Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19008da9c6 | ||
|
|
ffaefcdddd | ||
|
|
8ec2e61f66 | ||
|
|
c0574d7777 | ||
|
|
d7a8045038 | ||
|
|
8c55eba1b9 | ||
|
|
b97ade7996 | ||
|
|
833d760695 | ||
|
|
d5677ce4c9 | ||
|
|
60501e86da | ||
|
|
6f69c39ff8 | ||
|
|
fb1e8b71d3 | ||
|
|
59037c8329 | ||
|
|
e68d7f158f | ||
|
|
57f41f1216 | ||
|
|
18e458d340 | ||
|
|
e06e5b744a | ||
|
|
17efbe80db | ||
|
|
6c55b9eeec | ||
|
|
5d610eab02 | ||
|
|
9fd97ae337 | ||
|
|
0bce4ece00 | ||
|
|
a37e07d764 | ||
|
|
8f2f5b29d3 | ||
|
|
5c272a76e7 | ||
|
|
7ae5f713d6 | ||
|
|
48e81598b4 | ||
|
|
436d494a6d |
@@ -24,8 +24,8 @@ android {
|
|||||||
applicationId = "com.hotdeal.alarm"
|
applicationId = "com.hotdeal.alarm"
|
||||||
minSdk = 31
|
minSdk = 31
|
||||||
targetSdk = 35
|
targetSdk = 35
|
||||||
versionCode = 27
|
versionCode = 31
|
||||||
versionName = "0.2.7"
|
versionName = "0.3.1"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
|
|||||||
@@ -121,4 +121,10 @@ interface HotDealDao {
|
|||||||
*/
|
*/
|
||||||
@Query("UPDATE hot_deals SET isFavorite = :isFavorite WHERE id = :id")
|
@Query("UPDATE hot_deals SET isFavorite = :isFavorite WHERE id = :id")
|
||||||
suspend fun setFavorite(id: String, isFavorite: Boolean)
|
suspend fun setFavorite(id: String, isFavorite: Boolean)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 인기글 상태 업데이트 (기존 데이터도 HOT 마킹 가능하도록)
|
||||||
|
*/
|
||||||
|
@Query("UPDATE hot_deals SET isPopular = 1 WHERE id IN (:ids)")
|
||||||
|
suspend fun markAsPopular(ids: List<String>)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,9 @@ import androidx.datastore.core.DataStore
|
|||||||
import androidx.datastore.preferences.core.Preferences
|
import androidx.datastore.preferences.core.Preferences
|
||||||
import androidx.datastore.preferences.core.edit
|
import androidx.datastore.preferences.core.edit
|
||||||
import androidx.datastore.preferences.core.intPreferencesKey
|
import androidx.datastore.preferences.core.intPreferencesKey
|
||||||
|
import androidx.datastore.preferences.core.stringPreferencesKey
|
||||||
import androidx.datastore.preferences.preferencesDataStore
|
import androidx.datastore.preferences.preferencesDataStore
|
||||||
|
import com.hotdeal.alarm.domain.model.SiteType
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
import kotlinx.coroutines.flow.map
|
import kotlinx.coroutines.flow.map
|
||||||
|
|
||||||
@@ -18,11 +20,13 @@ class AppSettings(private val context: Context) {
|
|||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val POLLING_INTERVAL_KEY = intPreferencesKey("polling_interval_minutes")
|
private val POLLING_INTERVAL_KEY = intPreferencesKey("polling_interval_minutes")
|
||||||
|
private val SITE_ORDER_KEY = stringPreferencesKey("site_order_list")
|
||||||
|
private val KEYWORD_ORDER_KEY = stringPreferencesKey("keyword_order_list")
|
||||||
private const val DEFAULT_INTERVAL = 2
|
private const val DEFAULT_INTERVAL = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 폴� 주기 (분)
|
* 폴링 주기 (분)
|
||||||
*/
|
*/
|
||||||
val pollingInterval: Flow<Int> = context.dataStore.data
|
val pollingInterval: Flow<Int> = context.dataStore.data
|
||||||
.map { preferences ->
|
.map { preferences ->
|
||||||
@@ -30,11 +34,72 @@ class AppSettings(private val context: Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 폴� 주기 설정 저장
|
* 폴링 주기 설정 저장
|
||||||
*/
|
*/
|
||||||
suspend fun setPollingInterval(minutes: Int) {
|
suspend fun setPollingInterval(minutes: Int) {
|
||||||
context.dataStore.edit { preferences ->
|
context.dataStore.edit { preferences ->
|
||||||
preferences[POLLING_INTERVAL_KEY] = minutes
|
preferences[POLLING_INTERVAL_KEY] = minutes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 사이트 표시 순서 목록
|
||||||
|
*/
|
||||||
|
val siteOrder: Flow<List<SiteType>> = context.dataStore.data
|
||||||
|
.map { preferences ->
|
||||||
|
val savedStr = preferences[SITE_ORDER_KEY]
|
||||||
|
if (savedStr.isNullOrBlank()) {
|
||||||
|
SiteType.entries
|
||||||
|
} else {
|
||||||
|
val savedNames = savedStr.split(",")
|
||||||
|
val ordered = mutableListOf<SiteType>()
|
||||||
|
savedNames.forEach { name ->
|
||||||
|
try {
|
||||||
|
ordered.add(SiteType.valueOf(name.trim()))
|
||||||
|
} catch (e: Exception) {
|
||||||
|
// ignore invalid
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 누락된 신규 사이트가 있으면 끝에 추가
|
||||||
|
SiteType.entries.forEach { site ->
|
||||||
|
if (site !in ordered) {
|
||||||
|
ordered.add(site)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ordered
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 사이트 표시 순서 저장
|
||||||
|
*/
|
||||||
|
suspend fun setSiteOrder(order: List<SiteType>) {
|
||||||
|
val str = order.joinToString(",") { it.name }
|
||||||
|
context.dataStore.edit { preferences ->
|
||||||
|
preferences[SITE_ORDER_KEY] = str
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 키워드 ID 표시 순서 목록
|
||||||
|
*/
|
||||||
|
val keywordOrder: Flow<List<Long>> = context.dataStore.data
|
||||||
|
.map { preferences ->
|
||||||
|
val savedStr = preferences[KEYWORD_ORDER_KEY]
|
||||||
|
if (savedStr.isNullOrBlank()) {
|
||||||
|
emptyList()
|
||||||
|
} else {
|
||||||
|
savedStr.split(",").mapNotNull { it.trim().toLongOrNull() }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 키워드 ID 표시 순서 저장
|
||||||
|
*/
|
||||||
|
suspend fun setKeywordOrder(order: List<Long>) {
|
||||||
|
val str = order.joinToString(",") { it.toString() }
|
||||||
|
context.dataStore.edit { preferences ->
|
||||||
|
preferences[KEYWORD_ORDER_KEY] = str
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ import kotlin.random.Random
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 뽐뿌 스크래퍼
|
* 뽐뿌 스크래퍼
|
||||||
|
* - hotlist_flag=999 페이지에서 인기글 ID를 수집하여 HOT 뱃지 표시
|
||||||
|
* - 기존 hotpop_bg_color CSS 클래스도 폴백으로 감지
|
||||||
*/
|
*/
|
||||||
class PpomppuScraper(client: OkHttpClient) : BaseScraper(client) {
|
class PpomppuScraper(client: OkHttpClient) : BaseScraper(client) {
|
||||||
|
|
||||||
@@ -25,18 +27,18 @@ class PpomppuScraper(client: OkHttpClient) : BaseScraper(client) {
|
|||||||
|
|
||||||
override suspend fun scrape(board: String): Result<List<HotDeal>> = withContext(Dispatchers.IO) {
|
override suspend fun scrape(board: String): Result<List<HotDeal>> = withContext(Dispatchers.IO) {
|
||||||
try {
|
try {
|
||||||
|
// 1단계: 인기글(hotlist) 페이지에서 인기 게시물 ID 목록 수집
|
||||||
|
val hotPostIds = fetchHotPostIds(board)
|
||||||
|
Log.d("Ppomppu", "인기글 ID ${hotPostIds.size}개 수집됨: $hotPostIds")
|
||||||
|
|
||||||
|
// 2단계: 일반 게시판 페이지 스크래핑
|
||||||
val url = getBoardUrl(board)
|
val url = getBoardUrl(board)
|
||||||
Log.d("Ppomppu", "스크래핑 시작: $url")
|
Log.d("Ppomppu", "스크래핑 시작: $url")
|
||||||
|
|
||||||
// 요청 간격 랜덤화 (2~4초) - 차단 방지
|
|
||||||
val delayTime = Random.nextLong(2000, 4000)
|
val delayTime = Random.nextLong(2000, 4000)
|
||||||
Log.d("Ppomppu", "요청 대기: ${delayTime}ms")
|
|
||||||
delay(delayTime)
|
delay(delayTime)
|
||||||
|
|
||||||
// Jsoup으로 직접 연결 (User-Agent 회전)
|
|
||||||
val userAgent = getRandomUserAgent()
|
val userAgent = getRandomUserAgent()
|
||||||
Log.d("Ppomppu", "User-Agent: $userAgent")
|
|
||||||
|
|
||||||
val doc: Document = Jsoup.connect(url)
|
val doc: Document = Jsoup.connect(url)
|
||||||
.userAgent(userAgent)
|
.userAgent(userAgent)
|
||||||
.header("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")
|
.header("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")
|
||||||
@@ -47,50 +49,37 @@ class PpomppuScraper(client: OkHttpClient) : BaseScraper(client) {
|
|||||||
.followRedirects(true)
|
.followRedirects(true)
|
||||||
.get()
|
.get()
|
||||||
|
|
||||||
Log.d("Ppomppu", "문서 파싱 성공, 길이: ${doc.html().length}")
|
|
||||||
|
|
||||||
val deals = mutableListOf<HotDeal>()
|
val deals = mutableListOf<HotDeal>()
|
||||||
|
|
||||||
// 셀렉터로 요소 찾기 - 인기 게시물 감지를 위해 tr 요소 선택
|
|
||||||
val rowElements: Elements = doc.select("tr.baseList")
|
val rowElements: Elements = doc.select("tr.baseList")
|
||||||
Log.d("Ppomppu", "찾은 행 요소: ${rowElements.size}개")
|
Log.d("Ppomppu", "찾은 행 요소: ${rowElements.size}개")
|
||||||
|
|
||||||
// 최대 20개까지만 처리
|
|
||||||
var count = 0
|
var count = 0
|
||||||
rowElements.forEach { row ->
|
rowElements.forEach { row ->
|
||||||
if (count >= 20) return@forEach
|
if (count >= 20) return@forEach
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// 인기 게시물 여부 확인 (hotpop_bg_color 클래스 존재 여부)
|
val titleElement = row.selectFirst("a.baseList-title") ?: return@forEach
|
||||||
val isPopular = row.hasClass("hotpop_bg_color")
|
|
||||||
|
|
||||||
// 제목 링크 찾기
|
|
||||||
val titleElement = row.selectFirst("a.baseList-title")
|
|
||||||
if (titleElement == null) return@forEach
|
|
||||||
|
|
||||||
val title = titleElement.text().trim()
|
val title = titleElement.text().trim()
|
||||||
if (title.isEmpty()) return@forEach
|
if (title.isEmpty()) return@forEach
|
||||||
|
|
||||||
val href = titleElement.attr("href")
|
val href = titleElement.attr("href")
|
||||||
|
|
||||||
// 공지사항 제외
|
|
||||||
if (href.contains("regulation") || href.contains("notice")) return@forEach
|
if (href.contains("regulation") || href.contains("notice")) return@forEach
|
||||||
|
|
||||||
val dealUrl = resolveUrl(baseUrl, href)
|
|
||||||
|
|
||||||
// postId 추출
|
|
||||||
val postId = extractPostId(href)
|
val postId = extractPostId(href)
|
||||||
if (postId.isEmpty()) {
|
if (postId.isEmpty()) {
|
||||||
Log.w("Ppomppu", "postId 추출 실패: href=$href")
|
Log.w("Ppomppu", "postId 추출 실패: href=$href")
|
||||||
return@forEach
|
return@forEach
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 인기글 판단: hotlist 페이지에 포함되어 있거나 CSS 클래스로 감지
|
||||||
|
val isPopular = postId in hotPostIds || row.hasClass("hotpop_bg_color")
|
||||||
|
|
||||||
val deal = HotDeal(
|
val deal = HotDeal(
|
||||||
id = HotDeal.generateId(siteName, postId),
|
id = HotDeal.generateId(siteName, postId),
|
||||||
siteName = siteName,
|
siteName = siteName,
|
||||||
boardName = board,
|
boardName = board,
|
||||||
title = title,
|
title = title,
|
||||||
url = dealUrl,
|
url = resolveUrl(baseUrl, href),
|
||||||
createdAt = System.currentTimeMillis(),
|
createdAt = System.currentTimeMillis(),
|
||||||
isPopular = isPopular
|
isPopular = isPopular
|
||||||
)
|
)
|
||||||
@@ -103,7 +92,7 @@ class PpomppuScraper(client: OkHttpClient) : BaseScraper(client) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.d("Ppomppu", "파싱 완료: ${deals.size}개")
|
Log.d("Ppomppu", "파싱 완료: ${deals.size}개 (인기: ${deals.count { it.isPopular }}개)")
|
||||||
Result.success(deals)
|
Result.success(deals)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e("Ppomppu", "스크래핑 실패: ${e.message}", e)
|
Log.e("Ppomppu", "스크래핑 실패: ${e.message}", e)
|
||||||
@@ -111,6 +100,40 @@ class PpomppuScraper(client: OkHttpClient) : BaseScraper(client) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hotlist_flag=999 페이지에서 인기 게시물의 postId 목록을 수집
|
||||||
|
*/
|
||||||
|
private suspend fun fetchHotPostIds(board: String): Set<String> {
|
||||||
|
return try {
|
||||||
|
val hotUrl = "${baseUrl}zboard.php?id=$board&hotlist_flag=999"
|
||||||
|
Log.d("Ppomppu", "인기글 페이지 조회: $hotUrl")
|
||||||
|
|
||||||
|
delay(Random.nextLong(1000, 2000))
|
||||||
|
|
||||||
|
val doc = Jsoup.connect(hotUrl)
|
||||||
|
.userAgent(getRandomUserAgent())
|
||||||
|
.header("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")
|
||||||
|
.header("Accept-Language", "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7")
|
||||||
|
.header("Referer", "https://www.ppomppu.co.kr/")
|
||||||
|
.timeout(15000)
|
||||||
|
.followRedirects(true)
|
||||||
|
.get()
|
||||||
|
|
||||||
|
val ids = mutableSetOf<String>()
|
||||||
|
doc.select("tr.baseList a.baseList-title").forEach { link ->
|
||||||
|
val href = link.attr("href")
|
||||||
|
val postId = extractPostId(href)
|
||||||
|
if (postId.isNotEmpty()) {
|
||||||
|
ids.add(postId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ids
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Log.w("Ppomppu", "인기글 목록 조회 실패 (폴백으로 계속): ${e.message}")
|
||||||
|
emptySet()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun extractPostId(href: String): String {
|
private fun extractPostId(href: String): String {
|
||||||
val afterNo = href.substringAfter("no=", "")
|
val afterNo = href.substringAfter("no=", "")
|
||||||
if (afterNo.isEmpty()) return ""
|
if (afterNo.isEmpty()) return ""
|
||||||
|
|||||||
@@ -0,0 +1,117 @@
|
|||||||
|
package com.hotdeal.alarm.presentation.components
|
||||||
|
|
||||||
|
import androidx.compose.foundation.gestures.detectDragGesturesAfterLongPress
|
||||||
|
import androidx.compose.foundation.lazy.LazyListState
|
||||||
|
import androidx.compose.runtime.*
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.geometry.Offset
|
||||||
|
import androidx.compose.ui.graphics.graphicsLayer
|
||||||
|
import androidx.compose.ui.input.pointer.pointerInput
|
||||||
|
import androidx.compose.ui.zIndex
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key 기반 드래그 앤 드롭 Reorder 시스템
|
||||||
|
*
|
||||||
|
* - 각 아이템에 item-level long-press 제스처를 적용하여 드래그 시작
|
||||||
|
* - 드래그 중 다른 아이템의 중심점과 겹치면 swap 실행
|
||||||
|
* - swap 시 delta 보정으로 시각적 점프 방지
|
||||||
|
* - 비드래그 아이템은 animateItemPlacement()로 부드러운 슬라이드
|
||||||
|
*/
|
||||||
|
@Composable
|
||||||
|
fun rememberReorderState(
|
||||||
|
listState: LazyListState,
|
||||||
|
onSwap: (fromListIndex: Int, toListIndex: Int) -> Boolean
|
||||||
|
): ReorderState {
|
||||||
|
return remember(listState) {
|
||||||
|
ReorderState(listState, onSwap)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Stable
|
||||||
|
class ReorderState(
|
||||||
|
val listState: LazyListState,
|
||||||
|
private val onSwap: (Int, Int) -> Boolean
|
||||||
|
) {
|
||||||
|
/** 현재 드래그 중인 아이템의 key (null이면 드래그 없음) */
|
||||||
|
var draggedKey by mutableStateOf<Any?>(null)
|
||||||
|
private set
|
||||||
|
|
||||||
|
/** 누적 드래그 Y축 오프셋 */
|
||||||
|
var dragDelta by mutableFloatStateOf(0f)
|
||||||
|
private set
|
||||||
|
|
||||||
|
fun startDrag(key: Any) {
|
||||||
|
draggedKey = key
|
||||||
|
dragDelta = 0f
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateDrag(delta: Offset) {
|
||||||
|
if (draggedKey == null) return
|
||||||
|
dragDelta += delta.y
|
||||||
|
checkOverlap()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun endDrag() {
|
||||||
|
draggedKey = null
|
||||||
|
dragDelta = 0f
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun checkOverlap() {
|
||||||
|
val dragged = listState.layoutInfo.visibleItemsInfo
|
||||||
|
.firstOrNull { it.key == draggedKey } ?: return
|
||||||
|
|
||||||
|
val draggedMid = dragged.offset + dragged.size / 2f + dragDelta
|
||||||
|
|
||||||
|
val target = listState.layoutInfo.visibleItemsInfo
|
||||||
|
.firstOrNull { item ->
|
||||||
|
item.key != draggedKey &&
|
||||||
|
draggedMid >= item.offset.toFloat() &&
|
||||||
|
draggedMid < (item.offset + item.size).toFloat()
|
||||||
|
} ?: return
|
||||||
|
|
||||||
|
if (dragged.index == target.index) return
|
||||||
|
|
||||||
|
val swapped = onSwap(dragged.index, target.index)
|
||||||
|
if (swapped) {
|
||||||
|
// swap 후 아이템이 새 위치로 이동하므로, 시각적 점프를 막기 위해 delta 보정
|
||||||
|
dragDelta += if (dragged.index < target.index) {
|
||||||
|
-target.size.toFloat()
|
||||||
|
} else {
|
||||||
|
target.size.toFloat()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 개별 아이템에 부착하는 드래그 핸들 + 시각 효과 Modifier
|
||||||
|
* - 길게 누르면 드래그 시작
|
||||||
|
* - 드래그 중 아이템이 떠오르며 그림자 및 스케일업
|
||||||
|
*/
|
||||||
|
fun Modifier.reorderableItem(
|
||||||
|
state: ReorderState,
|
||||||
|
key: Any
|
||||||
|
): Modifier {
|
||||||
|
val isDragged = state.draggedKey == key
|
||||||
|
return this
|
||||||
|
.zIndex(if (isDragged) 10f else 0f)
|
||||||
|
.graphicsLayer {
|
||||||
|
if (isDragged) {
|
||||||
|
translationY = state.dragDelta
|
||||||
|
scaleX = 1.03f
|
||||||
|
scaleY = 1.03f
|
||||||
|
shadowElevation = 16f
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.pointerInput(key) {
|
||||||
|
detectDragGesturesAfterLongPress(
|
||||||
|
onDragStart = { state.startDrag(key) },
|
||||||
|
onDrag = { change, dragAmount ->
|
||||||
|
change.consume()
|
||||||
|
state.updateDrag(dragAmount)
|
||||||
|
},
|
||||||
|
onDragEnd = { state.endDrag() },
|
||||||
|
onDragCancel = { state.endDrag() }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -53,6 +53,7 @@ fun DealListScreen(
|
|||||||
onNavigateToSettings: () -> Unit = {}
|
onNavigateToSettings: () -> Unit = {}
|
||||||
) {
|
) {
|
||||||
val uiState by viewModel.uiState.collectAsStateWithLifecycle()
|
val uiState by viewModel.uiState.collectAsStateWithLifecycle()
|
||||||
|
val siteOrder by viewModel.siteOrder.collectAsStateWithLifecycle()
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
val focusManager = LocalFocusManager.current
|
val focusManager = LocalFocusManager.current
|
||||||
|
|
||||||
@@ -306,7 +307,7 @@ fun DealListScreen(
|
|||||||
accentColor = FavoriteColor
|
accentColor = FavoriteColor
|
||||||
)
|
)
|
||||||
|
|
||||||
SiteType.entries.forEach { siteType ->
|
siteOrder.forEach { siteType ->
|
||||||
val siteColor = getSiteColor(siteType)
|
val siteColor = getSiteColor(siteType)
|
||||||
FilterPillChip(
|
FilterPillChip(
|
||||||
selected = selectedSiteFilter == siteType,
|
selected = selectedSiteFilter == siteType,
|
||||||
@@ -406,20 +407,17 @@ fun DealListScreen(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Pull to Refresh 인디케이터
|
// Pull to Refresh 인디케이터
|
||||||
val progress = pullToRefreshState.progress
|
val topPadding = paddingValues.calculateTopPadding()
|
||||||
val showIndicator = pullToRefreshState.isRefreshing || progress > 0
|
|
||||||
|
|
||||||
if (showIndicator) {
|
|
||||||
PullToRefreshContainer(
|
PullToRefreshContainer(
|
||||||
state = pullToRefreshState,
|
state = pullToRefreshState,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.align(Alignment.TopCenter)
|
.align(Alignment.TopCenter)
|
||||||
.padding(top = 50.dp)
|
.padding(top = topPadding)
|
||||||
.zIndex(999f),
|
.zIndex(999f),
|
||||||
containerColor = MaterialTheme.colorScheme.surfaceVariant,
|
containerColor = MaterialTheme.colorScheme.surfaceVariant,
|
||||||
contentColor = MaterialTheme.colorScheme.primary
|
contentColor = MaterialTheme.colorScheme.primary
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
LaunchedEffect(pullToRefreshState.isRefreshing) {
|
LaunchedEffect(pullToRefreshState.isRefreshing) {
|
||||||
if (pullToRefreshState.isRefreshing) {
|
if (pullToRefreshState.isRefreshing) {
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ fun MainScreen(viewModel: MainViewModel) {
|
|||||||
Row(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.height(54.dp),
|
.height(48.dp),
|
||||||
verticalAlignment = Alignment.CenterVertically
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
val navItems = listOf(
|
val navItems = listOf(
|
||||||
@@ -119,29 +119,29 @@ fun MainScreen(viewModel: MainViewModel) {
|
|||||||
if (isSelected) {
|
if (isSelected) {
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.width(20.dp)
|
.width(18.dp)
|
||||||
.height(3.dp)
|
.height(2.5.dp)
|
||||||
.clip(CornerRadius.shapePill)
|
.clip(CornerRadius.shapePill)
|
||||||
.background(MaterialTheme.colorScheme.primary)
|
.background(MaterialTheme.colorScheme.primary)
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.height(3.dp))
|
Spacer(modifier = Modifier.height(2.dp))
|
||||||
} else {
|
} else {
|
||||||
Spacer(modifier = Modifier.height(6.dp))
|
Spacer(modifier = Modifier.height(4.5.dp))
|
||||||
}
|
}
|
||||||
|
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = if (isSelected) selectedIcon else unselectedIcon,
|
imageVector = if (isSelected) selectedIcon else unselectedIcon,
|
||||||
contentDescription = label,
|
contentDescription = label,
|
||||||
tint = itemColor,
|
tint = itemColor,
|
||||||
modifier = Modifier.size(22.dp)
|
modifier = Modifier.size(20.dp)
|
||||||
)
|
)
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(2.dp))
|
Spacer(modifier = Modifier.height(1.dp))
|
||||||
|
|
||||||
Text(
|
Text(
|
||||||
text = label,
|
text = label,
|
||||||
style = MaterialTheme.typography.labelSmall.copy(
|
style = MaterialTheme.typography.labelSmall.copy(
|
||||||
fontSize = 11.sp,
|
fontSize = 10.5.sp,
|
||||||
fontWeight = if (isSelected) FontWeight.Bold else FontWeight.Medium
|
fontWeight = if (isSelected) FontWeight.Bold else FontWeight.Medium
|
||||||
),
|
),
|
||||||
color = itemColor
|
color = itemColor
|
||||||
|
|||||||
@@ -5,15 +5,15 @@ import androidx.lifecycle.viewModelScope
|
|||||||
import com.hotdeal.alarm.data.local.db.dao.HotDealDao
|
import com.hotdeal.alarm.data.local.db.dao.HotDealDao
|
||||||
import com.hotdeal.alarm.data.local.db.dao.KeywordDao
|
import com.hotdeal.alarm.data.local.db.dao.KeywordDao
|
||||||
import com.hotdeal.alarm.data.local.db.dao.SiteConfigDao
|
import com.hotdeal.alarm.data.local.db.dao.SiteConfigDao
|
||||||
|
import com.hotdeal.alarm.data.local.db.entity.KeywordEntity
|
||||||
import com.hotdeal.alarm.data.local.db.entity.SiteConfigEntity
|
import com.hotdeal.alarm.data.local.db.entity.SiteConfigEntity
|
||||||
import com.hotdeal.alarm.data.local.preferences.AppSettings
|
import com.hotdeal.alarm.data.local.preferences.AppSettings
|
||||||
|
import com.hotdeal.alarm.domain.model.Keyword
|
||||||
import com.hotdeal.alarm.domain.model.SiteType
|
import com.hotdeal.alarm.domain.model.SiteType
|
||||||
import com.hotdeal.alarm.worker.WorkerScheduler
|
import com.hotdeal.alarm.worker.WorkerScheduler
|
||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
import kotlinx.coroutines.flow.*
|
import kotlinx.coroutines.flow.*
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.flow.MutableSharedFlow
|
|
||||||
import kotlinx.coroutines.flow.asSharedFlow
|
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
|
||||||
@HiltViewModel
|
@HiltViewModel
|
||||||
@@ -28,10 +28,17 @@ class MainViewModel @Inject constructor(
|
|||||||
private val _uiState = MutableStateFlow<MainUiState>(MainUiState.Loading)
|
private val _uiState = MutableStateFlow<MainUiState>(MainUiState.Loading)
|
||||||
val uiState: StateFlow<MainUiState> = _uiState.asStateFlow()
|
val uiState: StateFlow<MainUiState> = _uiState.asStateFlow()
|
||||||
|
|
||||||
// 폴링 주기 (저장된 값 즉시 반영)
|
// 폴링 주기
|
||||||
val pollingInterval: StateFlow<Int> = appSettings.pollingInterval
|
val pollingInterval: StateFlow<Int> = appSettings.pollingInterval
|
||||||
.stateIn(viewModelScope, SharingStarted.Eagerly, 2)
|
.stateIn(viewModelScope, SharingStarted.Eagerly, 2)
|
||||||
|
|
||||||
|
// 사이트 표시 순서
|
||||||
|
val siteOrder: StateFlow<List<SiteType>> = appSettings.siteOrder
|
||||||
|
.stateIn(viewModelScope, SharingStarted.Eagerly, SiteType.entries)
|
||||||
|
|
||||||
|
private val _toastEvent = MutableSharedFlow<String>()
|
||||||
|
val toastEvent: SharedFlow<String> = _toastEvent.asSharedFlow()
|
||||||
|
|
||||||
init {
|
init {
|
||||||
initializeApp()
|
initializeApp()
|
||||||
}
|
}
|
||||||
@@ -40,7 +47,6 @@ class MainViewModel @Inject constructor(
|
|||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
initializeDefaultSiteConfigs()
|
initializeDefaultSiteConfigs()
|
||||||
loadState()
|
loadState()
|
||||||
// 저장된 폴� 주기로 시작
|
|
||||||
val savedInterval = appSettings.pollingInterval.first()
|
val savedInterval = appSettings.pollingInterval.first()
|
||||||
startPolling(savedInterval.toLong())
|
startPolling(savedInterval.toLong())
|
||||||
}
|
}
|
||||||
@@ -72,12 +78,22 @@ class MainViewModel @Inject constructor(
|
|||||||
combine(
|
combine(
|
||||||
hotDealDao.observeAllDeals(),
|
hotDealDao.observeAllDeals(),
|
||||||
siteConfigDao.observeAllConfigs(),
|
siteConfigDao.observeAllConfigs(),
|
||||||
keywordDao.observeAllKeywords()
|
keywordDao.observeAllKeywords(),
|
||||||
) { deals, configs, keywords ->
|
appSettings.keywordOrder
|
||||||
|
) { deals, configs, keywords, keywordOrder ->
|
||||||
|
// 사용자가 설정한 키워드 순서에 따라 정렬
|
||||||
|
val domainKeywords = keywords.map { it.toDomain() }
|
||||||
|
val sortedKeywords = if (keywordOrder.isEmpty()) {
|
||||||
|
domainKeywords
|
||||||
|
} else {
|
||||||
|
val orderMap = keywordOrder.withIndex().associate { it.value to it.index }
|
||||||
|
domainKeywords.sortedBy { orderMap[it.id] ?: Int.MAX_VALUE }
|
||||||
|
}
|
||||||
|
|
||||||
MainUiState.Success(
|
MainUiState.Success(
|
||||||
deals = deals.map { it.toDomain() },
|
deals = deals.map { it.toDomain() },
|
||||||
siteConfigs = configs.map { it.toDomain() },
|
siteConfigs = configs.map { it.toDomain() },
|
||||||
keywords = keywords.map { it.toDomain() }
|
keywords = sortedKeywords
|
||||||
)
|
)
|
||||||
}.catch { e ->
|
}.catch { e ->
|
||||||
_uiState.value = MainUiState.Error(e.message ?: "Unknown error")
|
_uiState.value = MainUiState.Error(e.message ?: "Unknown error")
|
||||||
@@ -92,21 +108,40 @@ class MainViewModel @Inject constructor(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun reorderSites(fromIndex: Int, toIndex: Int) {
|
||||||
|
// siteOrder는 appSettings.siteOrder에서 stateIn으로 가져오므로
|
||||||
|
// appSettings를 즉시 저장하고 Flow가 업데이트되도록 함
|
||||||
|
val current = siteOrder.value.toMutableList()
|
||||||
|
if (fromIndex in current.indices && toIndex in current.indices) {
|
||||||
|
val item = current.removeAt(fromIndex)
|
||||||
|
current.add(toIndex, item)
|
||||||
|
viewModelScope.launch {
|
||||||
|
appSettings.setSiteOrder(current)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun addKeyword(keyword: String) {
|
fun addKeyword(keyword: String) {
|
||||||
if (keyword.isBlank()) return
|
if (keyword.isBlank()) return
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
keywordDao.insertKeyword(
|
val newId = keywordDao.insertKeyword(
|
||||||
com.hotdeal.alarm.data.local.db.entity.KeywordEntity(
|
KeywordEntity(
|
||||||
keyword = keyword.trim(),
|
keyword = keyword.trim(),
|
||||||
isEnabled = true
|
isEnabled = true
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
val currentOrder = appSettings.keywordOrder.first().toMutableList()
|
||||||
|
currentOrder.add(0, newId)
|
||||||
|
appSettings.setKeywordOrder(currentOrder)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun deleteKeyword(id: Long) {
|
fun deleteKeyword(id: Long) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
keywordDao.deleteKeywordById(id)
|
keywordDao.deleteKeywordById(id)
|
||||||
|
val currentOrder = appSettings.keywordOrder.first().toMutableList()
|
||||||
|
currentOrder.remove(id)
|
||||||
|
appSettings.setKeywordOrder(currentOrder)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,18 +151,28 @@ class MainViewModel @Inject constructor(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
fun reorderKeywords(fromIndex: Int, toIndex: Int) {
|
||||||
* 즐겨찾기 토글
|
// uiState를 동기적으로 즉시 업데이트하여 빠른 드래그 시 stale 데이터 방지
|
||||||
*/
|
val state = _uiState.value as? MainUiState.Success ?: return
|
||||||
|
val current = state.keywords.toMutableList()
|
||||||
|
if (fromIndex in current.indices && toIndex in current.indices) {
|
||||||
|
val item = current.removeAt(fromIndex)
|
||||||
|
current.add(toIndex, item)
|
||||||
|
// UI 즉시 갱신
|
||||||
|
_uiState.value = state.copy(keywords = current)
|
||||||
|
// DataStore 비동기 영속화
|
||||||
|
viewModelScope.launch {
|
||||||
|
appSettings.setKeywordOrder(current.map { it.id })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun toggleFavorite(dealId: String) {
|
fun toggleFavorite(dealId: String) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
hotDealDao.toggleFavorite(dealId)
|
hotDealDao.toggleFavorite(dealId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 즐겨찾기 설정
|
|
||||||
*/
|
|
||||||
fun setFavorite(dealId: String, isFavorite: Boolean) {
|
fun setFavorite(dealId: String, isFavorite: Boolean) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
hotDealDao.setFavorite(dealId, isFavorite)
|
hotDealDao.setFavorite(dealId, isFavorite)
|
||||||
@@ -138,9 +183,6 @@ class MainViewModel @Inject constructor(
|
|||||||
workerScheduler.executeOnce()
|
workerScheduler.executeOnce()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 폴� 시작 (주기 저장)
|
|
||||||
*/
|
|
||||||
fun startPolling(intervalMinutes: Long = WorkerScheduler.DEFAULT_INTERVAL_MINUTES) {
|
fun startPolling(intervalMinutes: Long = WorkerScheduler.DEFAULT_INTERVAL_MINUTES) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
appSettings.setPollingInterval(intervalMinutes.toInt())
|
appSettings.setPollingInterval(intervalMinutes.toInt())
|
||||||
@@ -152,20 +194,20 @@ class MainViewModel @Inject constructor(
|
|||||||
workerScheduler.cancelPolling()
|
workerScheduler.cancelPolling()
|
||||||
}
|
}
|
||||||
|
|
||||||
// 데이터 파싱 핫딜 데이터 전체 삭제 및 사용자 피드백 트리거
|
|
||||||
private val _toastEvent = MutableSharedFlow<String>(extraBufferCapacity = 1)
|
|
||||||
val toastEvent = _toastEvent.asSharedFlow()
|
|
||||||
|
|
||||||
fun deleteAllParsedData() {
|
fun deleteAllParsedData() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
|
try {
|
||||||
hotDealDao.deleteAllDeals()
|
hotDealDao.deleteAllDeals()
|
||||||
_toastEvent.emit("파싱 데이터가 삭제되었습니다")
|
_toastEvent.emit("모든 수집 데이터가 삭제되었습니다")
|
||||||
|
} catch (e: Exception) {
|
||||||
|
_toastEvent.emit("데이터 삭제 중 오류가 발생했습니다: ${e.message}")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sealed class MainUiState {
|
sealed class MainUiState {
|
||||||
data object Loading : MainUiState()
|
object Loading : MainUiState()
|
||||||
data class Success(
|
data class Success(
|
||||||
val deals: List<com.hotdeal.alarm.domain.model.HotDeal>,
|
val deals: List<com.hotdeal.alarm.domain.model.HotDeal>,
|
||||||
val siteConfigs: List<com.hotdeal.alarm.domain.model.SiteConfig>,
|
val siteConfigs: List<com.hotdeal.alarm.domain.model.SiteConfig>,
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -25,7 +25,6 @@ object ApkDownloadManager {
|
|||||||
private const val TAG = "ApkDownloadManager"
|
private const val TAG = "ApkDownloadManager"
|
||||||
private const val APK_FILE_NAME = "hotdeal-alarm-update.apk"
|
private const val APK_FILE_NAME = "hotdeal-alarm-update.apk"
|
||||||
|
|
||||||
// 등록된 리시버 추적 (메모리 누수 방지)
|
|
||||||
private var registeredReceiver: BroadcastReceiver? = null
|
private var registeredReceiver: BroadcastReceiver? = null
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -34,31 +33,29 @@ object ApkDownloadManager {
|
|||||||
fun downloadApk(context: Context, updateInfo: UpdateInfo): Long {
|
fun downloadApk(context: Context, updateInfo: UpdateInfo): Long {
|
||||||
val downloadManager = context.getSystemService(Context.DOWNLOAD_SERVICE) as DownloadManager
|
val downloadManager = context.getSystemService(Context.DOWNLOAD_SERVICE) as DownloadManager
|
||||||
|
|
||||||
// 기존 파일 삭제
|
val outputDir = context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)
|
||||||
val outputFile = File(context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS), APK_FILE_NAME)
|
if (outputDir != null && !outputDir.exists()) {
|
||||||
|
outputDir.mkdirs()
|
||||||
|
}
|
||||||
|
|
||||||
|
val outputFile = File(outputDir, APK_FILE_NAME)
|
||||||
if (outputFile.exists()) {
|
if (outputFile.exists()) {
|
||||||
outputFile.delete()
|
outputFile.delete()
|
||||||
}
|
}
|
||||||
|
|
||||||
val request = DownloadManager.Request(Uri.parse(updateInfo.updateUrl)).apply {
|
val request = DownloadManager.Request(Uri.parse(updateInfo.updateUrl)).apply {
|
||||||
setTitle("핫딜 알람 업데이트")
|
setTitle("핫딜 알람 업데이트")
|
||||||
setDescription("버전 ${updateInfo.version} 다운로드 중...")
|
setDescription("v${updateInfo.version} 다운로드 중...")
|
||||||
setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED)
|
setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED)
|
||||||
setDestinationInExternalFilesDir(context, Environment.DIRECTORY_DOWNLOADS, APK_FILE_NAME)
|
setDestinationInExternalFilesDir(context, Environment.DIRECTORY_DOWNLOADS, APK_FILE_NAME)
|
||||||
setAllowedOverMetered(true)
|
setAllowedOverMetered(true)
|
||||||
setAllowedOverRoaming(true)
|
setAllowedOverRoaming(true)
|
||||||
setMimeType("application/vnd.android.package-archive")
|
setMimeType("application/vnd.android.package-archive")
|
||||||
// Wi-Fi 환경에서 다운로드 우선
|
|
||||||
setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI or DownloadManager.Request.NETWORK_MOBILE)
|
setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI or DownloadManager.Request.NETWORK_MOBILE)
|
||||||
}
|
}
|
||||||
|
|
||||||
val downloadId = downloadManager.enqueue(request)
|
val downloadId = downloadManager.enqueue(request)
|
||||||
|
Log.d(TAG, "다운로드 큐에 추가됨: downloadId=$downloadId, url=${updateInfo.updateUrl}")
|
||||||
Toast.makeText(
|
|
||||||
context,
|
|
||||||
"업데이트 다운로드 시작...",
|
|
||||||
Toast.LENGTH_SHORT
|
|
||||||
).show()
|
|
||||||
|
|
||||||
return downloadId
|
return downloadId
|
||||||
}
|
}
|
||||||
@@ -72,14 +69,13 @@ object ApkDownloadManager {
|
|||||||
onComplete: () -> Unit,
|
onComplete: () -> Unit,
|
||||||
onFailed: () -> Unit
|
onFailed: () -> Unit
|
||||||
): BroadcastReceiver {
|
): BroadcastReceiver {
|
||||||
// 기존 리시버가 있으면 먼저 해제
|
|
||||||
unregisterDownloadCompleteReceiver(context)
|
unregisterDownloadCompleteReceiver(context)
|
||||||
|
|
||||||
val receiver = object : BroadcastReceiver() {
|
val receiver = object : BroadcastReceiver() {
|
||||||
override fun onReceive(context: Context?, intent: Intent?) {
|
override fun onReceive(receivedContext: Context?, intent: Intent?) {
|
||||||
val id = intent?.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, -1) ?: -1
|
val id = intent?.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, -1) ?: -1
|
||||||
if (id == downloadId) {
|
if (id == downloadId) {
|
||||||
val downloadManager = context?.getSystemService(Context.DOWNLOAD_SERVICE) as? DownloadManager
|
val downloadManager = receivedContext?.getSystemService(Context.DOWNLOAD_SERVICE) as? DownloadManager
|
||||||
val query = DownloadManager.Query().setFilterById(downloadId)
|
val query = DownloadManager.Query().setFilterById(downloadId)
|
||||||
val cursor = downloadManager?.query(query)
|
val cursor = downloadManager?.query(query)
|
||||||
|
|
||||||
@@ -90,16 +86,14 @@ object ApkDownloadManager {
|
|||||||
|
|
||||||
when (status) {
|
when (status) {
|
||||||
DownloadManager.STATUS_SUCCESSFUL -> {
|
DownloadManager.STATUS_SUCCESSFUL -> {
|
||||||
Log.d(TAG, "다운로드 완료, 설치 시작")
|
Log.d(TAG, "다운로드 완료 감지, onComplete 호출")
|
||||||
onComplete()
|
onComplete()
|
||||||
// 설치 후 리시버 해제
|
unregisterDownloadCompleteReceiver(receivedContext ?: context)
|
||||||
unregisterDownloadCompleteReceiver(context)
|
|
||||||
}
|
}
|
||||||
DownloadManager.STATUS_FAILED -> {
|
DownloadManager.STATUS_FAILED -> {
|
||||||
Log.e(TAG, "다운로드 실패")
|
Log.e(TAG, "다운로드 실패 감지")
|
||||||
onFailed()
|
onFailed()
|
||||||
// 실패 시 리시버 해제
|
unregisterDownloadCompleteReceiver(receivedContext ?: context)
|
||||||
unregisterDownloadCompleteReceiver(context)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -108,12 +102,11 @@ object ApkDownloadManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Android 12+ 에서는 RECEIVER_NOT_EXPORTED 플래그 필요
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
||||||
context.registerReceiver(
|
context.registerReceiver(
|
||||||
receiver,
|
receiver,
|
||||||
IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE),
|
IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE),
|
||||||
Context.RECEIVER_NOT_EXPORTED
|
Context.RECEIVER_EXPORTED
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
context.registerReceiver(
|
context.registerReceiver(
|
||||||
@@ -123,29 +116,20 @@ object ApkDownloadManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
registeredReceiver = receiver
|
registeredReceiver = receiver
|
||||||
Log.d(TAG, "다운로드 리시버 등록됨, downloadId=$downloadId")
|
|
||||||
|
|
||||||
return receiver
|
return receiver
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 다운로드 완료 리시버 해제
|
|
||||||
*/
|
|
||||||
fun unregisterDownloadCompleteReceiver(context: Context) {
|
fun unregisterDownloadCompleteReceiver(context: Context) {
|
||||||
registeredReceiver?.let { receiver ->
|
registeredReceiver?.let { receiver ->
|
||||||
try {
|
try {
|
||||||
context.unregisterReceiver(receiver)
|
context.unregisterReceiver(receiver)
|
||||||
Log.d(TAG, "다운로드 리시버 해제됨")
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w(TAG, "리시버 해제 실패 (이미 해제됨): ${e.message}")
|
Log.w(TAG, "리시버 해제 중 예외: ${e.message}")
|
||||||
}
|
}
|
||||||
registeredReceiver = null
|
registeredReceiver = null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 다운로드 상태 확인 (suspend 함수)
|
|
||||||
*/
|
|
||||||
suspend fun getDownloadStatus(context: Context, downloadId: Long): DownloadStatus =
|
suspend fun getDownloadStatus(context: Context, downloadId: Long): DownloadStatus =
|
||||||
withContext(Dispatchers.IO) {
|
withContext(Dispatchers.IO) {
|
||||||
val downloadManager = context.getSystemService(Context.DOWNLOAD_SERVICE) as DownloadManager
|
val downloadManager = context.getSystemService(Context.DOWNLOAD_SERVICE) as DownloadManager
|
||||||
@@ -161,8 +145,8 @@ object ApkDownloadManager {
|
|||||||
val bytesTotalIndex = it.getColumnIndex(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)
|
val bytesTotalIndex = it.getColumnIndex(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)
|
||||||
|
|
||||||
val downloadStatus = it.getInt(statusIndex)
|
val downloadStatus = it.getInt(statusIndex)
|
||||||
val bytesDownloaded = it.getLong(bytesDownloadedIndex)
|
val bytesDownloaded = if (bytesDownloadedIndex >= 0) it.getLong(bytesDownloadedIndex) else 0L
|
||||||
val bytesTotal = it.getLong(bytesTotalIndex)
|
val bytesTotal = if (bytesTotalIndex >= 0) it.getLong(bytesTotalIndex) else 0L
|
||||||
|
|
||||||
val progress = if (bytesTotal > 0) {
|
val progress = if (bytesTotal > 0) {
|
||||||
((bytesDownloaded * 100) / bytesTotal).toInt()
|
((bytesDownloaded * 100) / bytesTotal).toInt()
|
||||||
@@ -181,26 +165,27 @@ object ApkDownloadManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 다운로드 완료 대기 (suspend 함수)
|
* APK 파일 설치 화면 실행
|
||||||
*/
|
|
||||||
suspend fun waitForDownload(context: Context, downloadId: Long): Boolean {
|
|
||||||
while (true) {
|
|
||||||
val status = getDownloadStatus(context, downloadId)
|
|
||||||
if (status.isComplete) return true
|
|
||||||
if (status.isFailed) return false
|
|
||||||
delay(500)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* APK 파일 설치
|
|
||||||
* @return Boolean true if installation started, false if permission denied
|
|
||||||
*/
|
*/
|
||||||
fun installApk(context: Context): Boolean {
|
fun installApk(context: Context): Boolean {
|
||||||
|
// Android 8.0 이상에서 알 수 없는 앱 설치 권한 확인
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
if (!context.packageManager.canRequestPackageInstalls()) {
|
if (!context.packageManager.canRequestPackageInstalls()) {
|
||||||
Log.w(TAG, "앱 설치 권한 없음")
|
Log.w(TAG, "앱 설치 권한 없음 -> 설정 화면 이동")
|
||||||
Toast.makeText(context, "설치 권한이 필요합니다. 설정에서 허용해주세요.", Toast.LENGTH_SHORT).show()
|
Toast.makeText(context, "앱 설치 권한을 허용한 후 다시 시도해주세요.", Toast.LENGTH_LONG).show()
|
||||||
|
try {
|
||||||
|
val intent = Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES).apply {
|
||||||
|
data = Uri.parse("package:${context.packageName}")
|
||||||
|
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
|
}
|
||||||
|
context.startActivity(intent)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
val intent = Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS).apply {
|
||||||
|
data = Uri.parse("package:${context.packageName}")
|
||||||
|
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
|
}
|
||||||
|
context.startActivity(intent)
|
||||||
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -208,7 +193,8 @@ object ApkDownloadManager {
|
|||||||
val apkFile = File(context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS), APK_FILE_NAME)
|
val apkFile = File(context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS), APK_FILE_NAME)
|
||||||
|
|
||||||
if (!apkFile.exists()) {
|
if (!apkFile.exists()) {
|
||||||
Toast.makeText(context, "APK 파일을 찾을 수 없습니다", Toast.LENGTH_SHORT).show()
|
Log.e(TAG, "APK 파일이 존재하지 않음: ${apkFile.absolutePath}")
|
||||||
|
Toast.makeText(context, "APK 파일을 찾을 수 없습니다. 다시 다운로드해주세요.", Toast.LENGTH_SHORT).show()
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -219,23 +205,23 @@ object ApkDownloadManager {
|
|||||||
apkFile
|
apkFile
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Log.d(TAG, "설치 인텐트 시작: uri=$apkUri")
|
||||||
val intent = Intent(Intent.ACTION_VIEW).apply {
|
val intent = Intent(Intent.ACTION_VIEW).apply {
|
||||||
setDataAndType(apkUri, "application/vnd.android.package-archive")
|
setDataAndType(apkUri, "application/vnd.android.package-archive")
|
||||||
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
||||||
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
|
addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
|
||||||
}
|
}
|
||||||
|
|
||||||
context.startActivity(intent)
|
context.startActivity(intent)
|
||||||
return true
|
return true
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Toast.makeText(context, "설치를 시작할 수 없습니다: ${e.message}", Toast.LENGTH_SHORT).show()
|
Log.e(TAG, "설치 화면 호출 실패", e)
|
||||||
|
Toast.makeText(context, "설치 화면을 열 수 없습니다: ${e.message}", Toast.LENGTH_LONG).show()
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 다운로드 상태 데이터 클래스
|
|
||||||
*/
|
|
||||||
data class DownloadStatus(
|
data class DownloadStatus(
|
||||||
val progress: Int,
|
val progress: Int,
|
||||||
val bytesDownloaded: Long,
|
val bytesDownloaded: Long,
|
||||||
|
|||||||
@@ -116,11 +116,18 @@ class HotDealPollingWorker @AssistedInject constructor(
|
|||||||
// 8. 알림 발송 상태 업데이트
|
// 8. 알림 발송 상태 업데이트
|
||||||
dealDao.markAsNotified(newDeals.map { it.id })
|
dealDao.markAsNotified(newDeals.map { it.id })
|
||||||
|
|
||||||
// 9. 오래된 데이터 정리 (3일 이상 - 배터리/데이터 절약)
|
// 9. 인기글 상태 업데이트 (신규+기존 딜 모두 HOT 마킹)
|
||||||
|
val popularDealIds = allDeals.filter { it.isPopular }.map { it.id }
|
||||||
|
if (popularDealIds.isNotEmpty()) {
|
||||||
|
dealDao.markAsPopular(popularDealIds)
|
||||||
|
Log.d(TAG, "인기글 마킹: ${popularDealIds.size}개")
|
||||||
|
}
|
||||||
|
|
||||||
|
// 10. 오래된 데이터 정리 (3일 이상 - 배터리/데이터 절약)
|
||||||
val threshold = System.currentTimeMillis() - (3 * 24 * 60 * 60 * 1000L)
|
val threshold = System.currentTimeMillis() - (3 * 24 * 60 * 60 * 1000L)
|
||||||
dealDao.deleteOldDeals(threshold)
|
dealDao.deleteOldDeals(threshold)
|
||||||
|
|
||||||
Log.d(TAG, "===== 핫딜 폴� 완료 =====")
|
Log.d(TAG, "===== 핫딜 폴 완료 =====")
|
||||||
Result.success()
|
Result.success()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "폴� 오류: ${e.message}", e)
|
Log.e(TAG, "폴� 오류: ${e.message}", e)
|
||||||
|
|||||||
+6
-6
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"version": "0.2.7",
|
"version": "0.3.1",
|
||||||
"versionCode": 27,
|
"versionCode": 31,
|
||||||
"updateUrl": "https://git.webpluss.net/sanjeok77/hotdeal_alarm/releases/download/v0.2.7/app-release.apk",
|
"updateUrl": "https://git.webpluss.net/sanjeok77/hotdeal_alarm/releases/download/v0.3.1/app-release.apk",
|
||||||
"changelog": [
|
"changelog": [
|
||||||
"하단 고정 메뉴 일체형(Docked) 디자인 개선 (떠 있는 이질감 완전 제거)",
|
"사이트 및 키워드 순서 조절을 터치 드래그 앤 드롭(Drag & Drop) 방식으로 전면 업그레이드",
|
||||||
"시스템 내비게이션 바닥까지 끊김 없는 배경 처리 및 0.6dp 헤어라인 구분선",
|
"앱 내 업데이트 시 다운로드 완료 후 설치 화면으로 안 넘어가는 버그 수정",
|
||||||
"상단 미니 캡슐 인디케이터와 One UI 9 네이티브 탭 전환 감각 적용"
|
"새 버전 업데이트 안내 다이얼로그 및 진행률 프로그레스 바 연동"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user