Compare commits
10 Commits
pack/test-
...
feature-mo
| Author | SHA1 | Date | |
|---|---|---|---|
| 04468c0627 | |||
| e585d905ac | |||
| 1f066e676f | |||
| a08f3aa9ac | |||
| f799096655 | |||
| 431aa52e49 | |||
| 26d6e4086a | |||
| 7e999784b7 | |||
| f07bcc89e8 | |||
| 22cff4ed72 |
180
.gitlab-ci.yml
180
.gitlab-ci.yml
@ -1,155 +1,43 @@
|
|||||||
# commit_sha 文件记录上一次成功流水线的commit sha,用于定时计划检测是否有新代码提交,有就执行流水线,没有就终止流水线
|
|
||||||
cache:
|
|
||||||
# 不同的分支采用不同的 cache,防止分支之间相互影响
|
|
||||||
key: "${CI_COMMIT_REF_SLUG}_commit_sha"
|
|
||||||
paths:
|
|
||||||
- commit_sha
|
|
||||||
policy: pull
|
|
||||||
|
|
||||||
# 将打包&发送apk包邮件job 和代码分析job 并行执行
|
|
||||||
stages:
|
stages:
|
||||||
- build&analyze
|
- analysis
|
||||||
- oss-upload&send-email
|
- sendmail
|
||||||
- ci_sonar_mail
|
|
||||||
|
|
||||||
# 阻止了 合并请求 或 push(分支和标签)的流水线。 最后的 when: always 规则运行所有其他流水线类型,包括定时计划流水线。
|
## 代码检查
|
||||||
workflow:
|
sonarqube_analysis:
|
||||||
rules:
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "push"'
|
|
||||||
when: always
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
|
||||||
when: never
|
|
||||||
- when: always
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
# 检查是否存在 commit_sha 文件
|
|
||||||
- if [ -f commit_sha ]; then cat commit_sha; else echo "0000000" > commit_sha; fi
|
|
||||||
- export BEFORE_COMMIT_SHA=$(cat commit_sha)
|
|
||||||
# 比较commit sha ,若与上一次成功流水线的commit sha 相同,则退出流水线
|
|
||||||
- if [ "$CI_COMMIT_SHA" == "$BEFORE_COMMIT_SHA" ] && [ "$CI_PIPELINE_SOURCE" != "web" ]; then exit 137; fi
|
|
||||||
|
|
||||||
# 使用 .post 阶段使作业在流水线的末尾运行。.post 始终是流水线的最后阶段。
|
|
||||||
change_commit:
|
|
||||||
tags:
|
|
||||||
- offline-test
|
|
||||||
stage: .post
|
|
||||||
# 此job 跳过拉取git代码
|
|
||||||
variables:
|
|
||||||
GIT_STRATEGY: none
|
|
||||||
script:
|
|
||||||
# 更新 commit_sha
|
|
||||||
- if [ "$CI_COMMIT_SHA" != "$BEFORE_COMMIT_SHA" ]; then echo $CI_COMMIT_SHA > commit_sha; fi
|
|
||||||
cache:
|
|
||||||
# 不同的分支采用不同的 cache,防止分支之间相互影响
|
|
||||||
key: "${CI_COMMIT_REF_SLUG}_commit_sha"
|
|
||||||
paths:
|
|
||||||
- commit_sha
|
|
||||||
policy: pull-push
|
|
||||||
allow_failure:
|
|
||||||
exit_codes: 137
|
|
||||||
|
|
||||||
android_build:
|
|
||||||
tags:
|
tags:
|
||||||
# - local-runner
|
|
||||||
- offline-test
|
- offline-test
|
||||||
stage: build&analyze
|
stage: analysis
|
||||||
image: hub.shanqu.cc/library/ci-android:jdk11-sdk31-33
|
image: sonarsource/sonar-scanner-cli:latest
|
||||||
resource_group: android_build
|
dependencies: [] #禁止传递来的artifact
|
||||||
variables:
|
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
|
||||||
KUBERNETES_CPU_LIMIT: "10"
|
|
||||||
script:
|
script:
|
||||||
- export GRADLE_USER_HOME=/home/gitlab-runner/ci-build-cache/$CI_PROJECT_PATH/.gradle
|
## 获取项目的一级组和二级组和项目名作为projectKey,例如projectKey=platform-backend-eci-monitor
|
||||||
- chmod +x ./gradlew
|
- group=`echo $CI_PROJECT_PATH | sed 's#/#-#g'`
|
||||||
- ./scripts/jenkins_build.sh $CI_COMMIT_REF_NAME $BEFORE_COMMIT_SHA $CI_COMMIT_SHA
|
- sonar-scanner
|
||||||
#设置打包后的产物,用于job之间共享
|
-Dsonar.host.url=http://sonarqube-server.sonarqube:9000/
|
||||||
artifacts:
|
-Dsonar.login=be43de7264ce4c4766eb0c020373c3e74e6df257
|
||||||
paths:
|
-Dsonar.jacoco.reportPaths=target/jacoco.exec
|
||||||
- app/build/tmp/*.apk
|
-Dsonar.projectKey=$group
|
||||||
expire_in: 48 hrs # 指定附件上载后保存的时间24h,默认永久在Gitlab保存
|
-Dsonar.projectName=$CI_PROJECT_PATH
|
||||||
allow_failure:
|
-Dsonar.sourceEncoding=UTF-8
|
||||||
exit_codes: 137
|
-Dsonar.exclusions=**/vendor/**,**/errcode/**
|
||||||
|
-Dsonar.gitlab.project_id=$CI_PROJECT_ID
|
||||||
|
-Dsonar.gitlab.commit_sha=$CI_COMMIT_SHA
|
||||||
|
-Dsonar.gitlab.ref_name=$CI_COMMIT_REF_NAME
|
||||||
|
-Dsonar.gitlab.ci_merge_request_iid=$CI_MERGE_REQUEST_IID
|
||||||
|
-Dsonar.gitlab.merge_request_discussion=true
|
||||||
|
-Dsonar.java.binaries=. # 如果不使用Maven或Gradle进行分析,则必须手动提供测试二进制文件
|
||||||
only:
|
only:
|
||||||
- dev
|
- dev
|
||||||
- feat/GHZSCY-5250
|
|
||||||
|
|
||||||
# 代码检查
|
|
||||||
sonarqube_analysis:
|
|
||||||
tags:
|
|
||||||
- offline-test
|
|
||||||
stage: build&analyze
|
|
||||||
image: sonarsource/sonar-scanner-cli:latest
|
|
||||||
dependencies: [] #禁止传递来的artifact
|
|
||||||
script:
|
|
||||||
## 获取项目的一级组和二级组和项目名作为projectKey,例如projectKey=platform-backend-eci-monitor
|
|
||||||
- group=`echo $CI_PROJECT_PATH | sed 's#/#-#g'`
|
|
||||||
- sonar-scanner
|
|
||||||
-Dsonar.host.url=http://sonarqube-server.sonarqube:9000/
|
|
||||||
-Dsonar.login=be43de7264ce4c4766eb0c020373c3e74e6df257
|
|
||||||
-Dsonar.jacoco.reportPaths=target/jacoco.exec
|
|
||||||
-Dsonar.projectKey=$group
|
|
||||||
-Dsonar.projectName=$CI_PROJECT_PATH
|
|
||||||
-Dsonar.sourceEncoding=UTF-8
|
|
||||||
-Dsonar.exclusions=**/vendor/**,**/errcode/**
|
|
||||||
-Dsonar.gitlab.project_id=$CI_PROJECT_ID
|
|
||||||
-Dsonar.gitlab.commit_sha=$CI_COMMIT_SHA
|
|
||||||
-Dsonar.gitlab.ref_name=$CI_COMMIT_REF_NAME
|
|
||||||
-Dsonar.gitlab.ci_merge_request_iid=$CI_MERGE_REQUEST_IID
|
|
||||||
-Dsonar.gitlab.merge_request_discussion=true
|
|
||||||
-Dsonar.java.binaries=.
|
|
||||||
-Dsonar.branch.name=$CI_COMMIT_REF_NAME
|
|
||||||
allow_failure:
|
|
||||||
exit_codes: 137
|
|
||||||
only:
|
|
||||||
- dev
|
|
||||||
- release
|
|
||||||
|
|
||||||
## 发送简易检测结果报告
|
## 发送简易检测结果报告
|
||||||
send_sonar_report:
|
send_sonar_report:
|
||||||
tags:
|
tags:
|
||||||
- offline-test
|
- offline-test
|
||||||
stage: ci_sonar_mail
|
stage: sendmail
|
||||||
image: hub.shanqu.cc/library/docker:latest
|
image: hub.shanqu.cc/library/docker:latest
|
||||||
# 此job 跳过拉取git代码
|
dependencies: [] #禁止传递来的artifact
|
||||||
variables:
|
script:
|
||||||
GIT_STRATEGY: none
|
- group=`echo $CI_PROJECT_PATH | sed 's#/#-#g'`
|
||||||
script:
|
- docker run -e PROJECTKEY=$group -e EMAIL=$GITLAB_USER_EMAIL --name send-email --rm hub.shanqu.cc/platform/send-sonar-report:latest
|
||||||
- group=`echo $CI_PROJECT_PATH | sed 's#/#-#g'`
|
only:
|
||||||
- docker run -e PROJECTKEY=$group -e EMAIL=$GITLAB_USER_EMAIL -e BRANCH=$CI_COMMIT_REF_NAME --name send-email --rm hub.shanqu.cc/platform/send-sonar-report:latest
|
- dev
|
||||||
allow_failure:
|
|
||||||
exit_codes: 137
|
|
||||||
only:
|
|
||||||
- dev
|
|
||||||
- release
|
|
||||||
|
|
||||||
oss-upload&send-email:
|
|
||||||
tags:
|
|
||||||
- sysadm-devops
|
|
||||||
stage: oss-upload&send-email
|
|
||||||
image: hub.shanqu.cc/devops/android-apk-oss-upload:latest
|
|
||||||
variables:
|
|
||||||
GIT_STRATEGY: none
|
|
||||||
VAULT_ADDR: https://vault.shanqu.cc # 固定值
|
|
||||||
VAULT_SECRET_PATH: prod/devops/android-apk-oss-upload # 固定值
|
|
||||||
VAULT_ROLE: android-apk-oss-upload # 固定值
|
|
||||||
ENDPOINT: "tos-cn-guangzhou.ivolces.com" # 固定值
|
|
||||||
BUCKET: "sysadm-public" # 固定值
|
|
||||||
FILE_PATH: "app/build/tmp/" # APK 存放路径
|
|
||||||
Email_To_List: $EMAIL_TO_LIST # 邮件接受人列表
|
|
||||||
Email_Title: "光环助手 $CI_COMMIT_BRANCH" # 邮件标题
|
|
||||||
PIPELINE_ID: $CI_PIPELINE_ID # 流水线id
|
|
||||||
COMMIT_BRANCH: $CI_COMMIT_BRANCH # 提交分支
|
|
||||||
MAIL_MESSAGE: "[$CI_COMMIT_AUTHOR] $CI_COMMIT_MESSAGE"
|
|
||||||
needs:
|
|
||||||
- job: android_build
|
|
||||||
artifacts: true
|
|
||||||
script:
|
|
||||||
### 绑定上传参数 ###
|
|
||||||
- export OSS_PATH="release/dev/${CI_PROJECT_NAME}/$(date "+%Y/%m/%d")"
|
|
||||||
### 开启上传 ###
|
|
||||||
- /usr/local/bin/python /upload.py
|
|
||||||
### 发送邮件
|
|
||||||
- /usr/local/bin/python /ci-android-mail-jira-comment.py
|
|
||||||
only:
|
|
||||||
- dev
|
|
||||||
- feat/GHZSCY-5250
|
|
||||||
|
|||||||
10
.gitmodules
vendored
10
.gitmodules
vendored
@ -1,10 +1,10 @@
|
|||||||
[submodule "libraries/LGLibrary"]
|
[submodule "libraries/LGLibrary"]
|
||||||
path = libraries/LGLibrary
|
path = libraries/LGLibrary
|
||||||
url = ../../../android/common-library.git
|
url = git@git.shanqu.cc:android/common-library.git
|
||||||
branch = master
|
branch = master
|
||||||
[submodule "vspace-bridge"]
|
[submodule "vspace-bridge"]
|
||||||
path = vspace-bridge
|
path = vspace-bridge
|
||||||
url = ../../../cwzs/android/vspace-bridge.git
|
url = git@git.shanqu.cc:cwzs/android/vspace-bridge.git
|
||||||
[submodule "ndownload"]
|
[submodule "module_common/src/debug/assets/assistant-android-mock"]
|
||||||
path = ndownload
|
path = module_common/src/debug/assets/assistant-android-mock
|
||||||
url = ../../../android/ndownload.git
|
url = git@git.shanqu.cc:halo/android/assistant-android-mock.git
|
||||||
|
|||||||
15
Dockerfile
15
Dockerfile
@ -1,15 +0,0 @@
|
|||||||
FROM openjdk:11-jdk
|
|
||||||
WORKDIR /project
|
|
||||||
SHELL ["/bin/bash", "-c"]
|
|
||||||
#配置SDK环境变量
|
|
||||||
ENV ANDROID_SDK_ROOT /usr/lib/sdk
|
|
||||||
ENV ANDROID_HOME /usr/lib/sdk
|
|
||||||
ENV PATH $ANDROID_SDK_ROOT:$PATH
|
|
||||||
ENV PATH=$PATH:${ANDROID_HOME}/cmdline-tools/cmdline-tools/bin/
|
|
||||||
ENV GRADLE_USER_HOME /project/.gradle
|
|
||||||
RUN source ~/.bashrc
|
|
||||||
RUN sed -i "s@http://\(deb\|security\).debian.org@https://mirrors.aliyun.com@g" /etc/apt/sources.list \
|
|
||||||
&& apt-get --quiet update --yes \
|
|
||||||
&& apt-get --quiet install --yes lib32stdc++6 lib32z1 libncurses5 util-linux bash tzdata librdkafka-dev pkgconf \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
COPY .gradle /project/.gradle
|
|
||||||
20
README.md
20
README.md
@ -30,7 +30,14 @@
|
|||||||
|
|
||||||
### git 版本管理
|
### git 版本管理
|
||||||
|
|
||||||
本项目使用简化版的 git flow 来管理分支,细节请看 [光环安卓简单 git 规范](https://git.shanqu.cc/halo/android/assistant-android/-/wikis/%E5%85%89%E7%8E%AF%E5%AE%89%E5%8D%93%E7%AE%80%E5%8D%95-git-%E8%A7%84%E8%8C%83)
|
本项目使用简化版的 git flow 来管理分支,细节请看 [光环安卓简单 git 规范](https://git.ghzs.com/halo/android/assistant-android/-/wikis/%E5%85%89%E7%8E%AF%E5%AE%89%E5%8D%93%E7%AE%80%E5%8D%95-git-%E8%A7%84%E8%8C%83)
|
||||||
|
|
||||||
|
### API 环境配置
|
||||||
|
|
||||||
|
本项目使用 Build Variants 来切换 API 环境
|
||||||
|
|
||||||
|
* internal 为测试环境
|
||||||
|
* publish 为正式环境
|
||||||
|
|
||||||
### 图片资源配置
|
### 图片资源配置
|
||||||
|
|
||||||
@ -46,3 +53,14 @@
|
|||||||
|
|
||||||
* 本项目使用了微信的 [AndResGuard](https://github.com/shwenzhang/AndResGuard) 作为资源混淆压缩方案,新增需要使用 `getIdentifier` 获取的资源文件时需要添加至白名单
|
* 本项目使用了微信的 [AndResGuard](https://github.com/shwenzhang/AndResGuard) 作为资源混淆压缩方案,新增需要使用 `getIdentifier` 获取的资源文件时需要添加至白名单
|
||||||
* 本项目默认使用 R8 作为混淆工具,往 proguard-rules.txt 添加 proguard 新配置项时请检查可用性(如语法等)
|
* 本项目默认使用 R8 作为混淆工具,往 proguard-rules.txt 添加 proguard 新配置项时请检查可用性(如语法等)
|
||||||
|
|
||||||
|
### APK打包配置
|
||||||
|
|
||||||
|
> 打内部测试包:`./scripts/test_build.sh`
|
||||||
|
> 打邮件测试包:`./scripts/jenkins_build.sh`
|
||||||
|
|
||||||
|
### TODO
|
||||||
|
|
||||||
|
* 把原有 EventBus 的消息 Type 统一到一个文件内
|
||||||
|
* 将实现细节从 View(Fragment、Activity) 剥离并以 MVVM 结构改造
|
||||||
|
* 重构 MainActivity
|
||||||
|
|||||||
193
app/build.gradle
193
app/build.gradle
@ -9,22 +9,12 @@ import groovy.xml.XmlUtil
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
|
|
||||||
String CONFIG_ID = ""
|
|
||||||
String FIRST_LAUNCH = ""
|
|
||||||
String SDK_VERSION = ""
|
|
||||||
String SDK_APP_ID = ""
|
|
||||||
String SDK_APP_NAME = ""
|
|
||||||
boolean USE_DEFAULT_CHANNEL_SDK = true
|
|
||||||
int ACTIVATE_REPORTING_RATIO = 100
|
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
viewBinding true
|
viewBinding true
|
||||||
dataBinding true
|
dataBinding true
|
||||||
}
|
}
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
coreLibraryDesugaringEnabled true
|
|
||||||
|
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
@ -77,30 +67,11 @@ android {
|
|||||||
|
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt', 'proguard-fresco.txt'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt', 'proguard-fresco.txt'
|
||||||
|
|
||||||
String CORE_EVENT_GAME_CATEGORY = ""
|
/**
|
||||||
|
* All third-party appid/appkey
|
||||||
// 推广用的关键事件游戏类型
|
*/
|
||||||
buildConfigField "String", "CORE_EVENT_GAME_CATEGORY", "\"${CORE_EVENT_GAME_CATEGORY}\""
|
|
||||||
|
|
||||||
// 推广用的配置 id
|
|
||||||
buildConfigField "String", "CONFIG_ID", "\"${CONFIG_ID}\""
|
|
||||||
|
|
||||||
// 推广用的 SDK 版本 (仅记录使用)
|
|
||||||
buildConfigField "String", "SDK_VERSION", "\"${SDK_VERSION}\""
|
|
||||||
buildConfigField "String", "SDK_APP_ID", "\"${SDK_APP_ID}\""
|
|
||||||
buildConfigField "String", "SDK_APP_NAME", "\"${SDK_APP_NAME}\""
|
|
||||||
buildConfigField "boolean", "USE_DEFAULT_CHANNEL_SDK", "${USE_DEFAULT_CHANNEL_SDK}"
|
|
||||||
|
|
||||||
// 首次启动的跳转配置
|
|
||||||
buildConfigField "String", "FIRST_LAUNCH", "\"${FIRST_LAUNCH}\""
|
|
||||||
|
|
||||||
buildConfigField "int", "ACTIVATE_REPORTING_RATIO", "${ACTIVATE_REPORTING_RATIO}"
|
|
||||||
|
|
||||||
// All third-party appid/appkey
|
|
||||||
buildConfigField "boolean", "IS_GAT_APP", "false"
|
|
||||||
buildConfigField "String", "API_HOST", "\"${API_HOST}\""
|
buildConfigField "String", "API_HOST", "\"${API_HOST}\""
|
||||||
buildConfigField "String", "NEW_API_HOST", "\"${NEW_API_HOST}\""
|
buildConfigField "String", "NEW_API_HOST", "\"${NEW_API_HOST}\""
|
||||||
buildConfigField "String", "LOG_HUB_PROJECT", "\"${LOG_HUB_PROJECT}\""
|
|
||||||
buildConfigField "String", "VAPI_HOST", "\"${VAPI_HOST}\""
|
buildConfigField "String", "VAPI_HOST", "\"${VAPI_HOST}\""
|
||||||
buildConfigField "String", "WECHAT_APPID", "\"${WECHAT_APPID}\""
|
buildConfigField "String", "WECHAT_APPID", "\"${WECHAT_APPID}\""
|
||||||
buildConfigField "String", "WECHAT_SECRET", "\"${WECHAT_SECRET}\""
|
buildConfigField "String", "WECHAT_SECRET", "\"${WECHAT_SECRET}\""
|
||||||
@ -156,12 +127,12 @@ android {
|
|||||||
variantFilter { variant ->
|
variantFilter { variant ->
|
||||||
def names = variant.flavors*.name
|
def names = variant.flavors*.name
|
||||||
def isDebugType = variant.buildType.name == "debug"
|
def isDebugType = variant.buildType.name == "debug"
|
||||||
if ((names.contains("tea") || name.contains("kuaishou") || name.contains("gdt")) && isDebugType) {
|
if ((names.contains("tea")) && isDebugType) {
|
||||||
setIgnore(true)
|
setIgnore(true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
flavorDimensions("env", "region")
|
flavorDimensions("env")
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
publish {
|
publish {
|
||||||
@ -173,25 +144,10 @@ android {
|
|||||||
tea {
|
tea {
|
||||||
java.srcDirs = ['src/main/java', 'src/tea/java']
|
java.srcDirs = ['src/main/java', 'src/tea/java']
|
||||||
}
|
}
|
||||||
kuaishou {
|
|
||||||
java.srcDirs = ['src/main/java', 'src/kuaishou/java']
|
|
||||||
}
|
|
||||||
gdt {
|
|
||||||
java.srcDirs = ['src/main/java', 'src/gdt/java']
|
|
||||||
}
|
|
||||||
gat {
|
|
||||||
java.srcDirs = ['src/main/java', 'src/gat/java']
|
|
||||||
}
|
|
||||||
cn {
|
|
||||||
java.srcDirs = ['src/main/java', 'src/cn/java']
|
|
||||||
}
|
|
||||||
sm {
|
|
||||||
java.srcDirs = ['src/main/java', 'src/sm/java']
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
productFlavors {
|
productFlavors {
|
||||||
// internal, 内部测试包使用的 flavor,接口包含包括测试和正式环境
|
// internal test dev host
|
||||||
internal {
|
internal {
|
||||||
dimension "env"
|
dimension "env"
|
||||||
versionNameSuffix "-debug"
|
versionNameSuffix "-debug"
|
||||||
@ -201,11 +157,9 @@ android {
|
|||||||
buildConfigField "String", "DEV_VAPI_HOST", "\"${DEV_VAPI_HOST}\""
|
buildConfigField "String", "DEV_VAPI_HOST", "\"${DEV_VAPI_HOST}\""
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${DEV_QUICK_LOGIN_APPID}\""
|
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${DEV_QUICK_LOGIN_APPID}\""
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${DEV_QUICK_LOGIN_APPKEY}\""
|
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${DEV_QUICK_LOGIN_APPKEY}\""
|
||||||
buildConfigField "String", "DEV_CSJ_APPID", "\"${DEV_CSJ_APPID}\""
|
|
||||||
buildConfigField "String", "CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// publish, 发布时候使用的 flavor,接口仅包含正式环境
|
// publish release host
|
||||||
publish {
|
publish {
|
||||||
dimension "env"
|
dimension "env"
|
||||||
|
|
||||||
@ -214,8 +168,6 @@ android {
|
|||||||
buildConfigField "String", "DEV_VAPI_HOST", "\"${VAPI_HOST}\""
|
buildConfigField "String", "DEV_VAPI_HOST", "\"${VAPI_HOST}\""
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${QUICK_LOGIN_APPID}\""
|
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${QUICK_LOGIN_APPID}\""
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${QUICK_LOGIN_APPKEY}\""
|
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${QUICK_LOGIN_APPKEY}\""
|
||||||
buildConfigField "String", "DEV_CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
buildConfigField "String", "CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tea {
|
tea {
|
||||||
@ -226,66 +178,9 @@ android {
|
|||||||
buildConfigField "String", "DEV_VAPI_HOST", "\"${VAPI_HOST}\""
|
buildConfigField "String", "DEV_VAPI_HOST", "\"${VAPI_HOST}\""
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${QUICK_LOGIN_APPID}\""
|
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${QUICK_LOGIN_APPID}\""
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${QUICK_LOGIN_APPKEY}\""
|
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${QUICK_LOGIN_APPKEY}\""
|
||||||
buildConfigField "String", "DEV_CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
buildConfigField "String", "CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
|
|
||||||
manifestPlaceholders.put("APPLOG_SCHEME", "rangersapplog.byAx6uYt".toLowerCase())
|
manifestPlaceholders.put("APPLOG_SCHEME", "rangersapplog.byAx6uYt".toLowerCase())
|
||||||
}
|
}
|
||||||
|
|
||||||
kuaishou {
|
|
||||||
dimension "env"
|
|
||||||
|
|
||||||
buildConfigField "String", "DEV_API_HOST", "\"${API_HOST}\""
|
|
||||||
buildConfigField "String", "NEW_DEV_API_HOST", "\"${NEW_API_HOST}\""
|
|
||||||
buildConfigField "String", "DEV_VAPI_HOST", "\"${VAPI_HOST}\""
|
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${QUICK_LOGIN_APPID}\""
|
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${QUICK_LOGIN_APPKEY}\""
|
|
||||||
buildConfigField "String", "DEV_CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
buildConfigField "String", "CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
}
|
|
||||||
|
|
||||||
gdt {
|
|
||||||
dimension "env"
|
|
||||||
|
|
||||||
buildConfigField "String", "DEV_API_HOST", "\"${API_HOST}\""
|
|
||||||
buildConfigField "String", "NEW_DEV_API_HOST", "\"${NEW_API_HOST}\""
|
|
||||||
buildConfigField "String", "DEV_VAPI_HOST", "\"${VAPI_HOST}\""
|
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${QUICK_LOGIN_APPID}\""
|
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${QUICK_LOGIN_APPKEY}\""
|
|
||||||
buildConfigField "String", "DEV_CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
buildConfigField "String", "CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
}
|
|
||||||
|
|
||||||
sm {
|
|
||||||
dimension "env"
|
|
||||||
|
|
||||||
buildConfigField "String", "DEV_API_HOST", "\"${API_HOST}\""
|
|
||||||
buildConfigField "String", "NEW_DEV_API_HOST", "\"${NEW_API_HOST}\""
|
|
||||||
buildConfigField "String", "DEV_VAPI_HOST", "\"${VAPI_HOST}\""
|
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPID", "\"${QUICK_LOGIN_APPID}\""
|
|
||||||
buildConfigField "String", "QUICK_LOGIN_APPKEY", "\"${QUICK_LOGIN_APPKEY}\""
|
|
||||||
buildConfigField "String", "DEV_CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
buildConfigField "String", "CSJ_APPID", "\"${CSJ_APPID}\""
|
|
||||||
}
|
|
||||||
|
|
||||||
// 港澳台
|
|
||||||
gat {
|
|
||||||
dimension "region"
|
|
||||||
|
|
||||||
applicationId rootProject.ext.applicationIdGat
|
|
||||||
|
|
||||||
// 支持繁体
|
|
||||||
resConfigs "zh", "zh-rTW"
|
|
||||||
|
|
||||||
buildConfigField "boolean", "IS_GAT_APP", "true"
|
|
||||||
buildConfigField "String", "LOG_HUB_PROJECT", "\"${LOG_HUB_PROJECT_GAT}\""
|
|
||||||
buildConfigField "String", "API_HOST", "\"${API_HOST_GAT}\""
|
|
||||||
buildConfigField "String", "NEW_API_HOST", "\"${NEW_API_HOST_GAT}\""
|
|
||||||
}
|
|
||||||
|
|
||||||
cn {
|
|
||||||
dimension "region"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -300,9 +195,6 @@ dependencies {
|
|||||||
implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
|
implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
|
||||||
|
|
||||||
teaImplementation fileTree(include: ['*.jar', '*.aar'], dir: 'src/tea/libs')
|
teaImplementation fileTree(include: ['*.jar', '*.aar'], dir: 'src/tea/libs')
|
||||||
kuaishouImplementation fileTree(include: ['*.jar', '*.aar'], dir: 'src/kuaishou/libs')
|
|
||||||
gdtImplementation fileTree(include: ['*.jar', '*.aar'], dir: 'src/gdt/libs')
|
|
||||||
smImplementation fileTree(include: ['*.jar', '*.aar'], dir: 'src/sm/libs')
|
|
||||||
testImplementation 'junit:junit:4.12'
|
testImplementation 'junit:junit:4.12'
|
||||||
|
|
||||||
debugImplementation "com.squareup.leakcanary:leakcanary-android:${leakcanary}"
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:${leakcanary}"
|
||||||
@ -310,6 +202,8 @@ dependencies {
|
|||||||
|
|
||||||
// debugImplementation "com.gu.android:toolargetool:${toolargetool}" // 需要使用调试时才启用
|
// debugImplementation "com.gu.android:toolargetool:${toolargetool}" // 需要使用调试时才启用
|
||||||
debugImplementation "com.github.nichbar:WhatTheStack:${whatTheStack}"
|
debugImplementation "com.github.nichbar:WhatTheStack:${whatTheStack}"
|
||||||
|
debugImplementation "io.github.didi.dokit:dokitx:${dokit}"
|
||||||
|
|
||||||
|
|
||||||
implementation "androidx.multidex:multidex:${multiDex}"
|
implementation "androidx.multidex:multidex:${multiDex}"
|
||||||
implementation "androidx.fragment:fragment-ktx:${fragment}"
|
implementation "androidx.fragment:fragment-ktx:${fragment}"
|
||||||
@ -321,8 +215,7 @@ dependencies {
|
|||||||
|
|
||||||
implementation "com.kyleduo.switchbutton:library:${switchButton}"
|
implementation "com.kyleduo.switchbutton:library:${switchButton}"
|
||||||
|
|
||||||
implementation "com.tencent.vasdolly:helper:${apkChannelPackage}"
|
implementation "com.leon.channel:helper:${apkChannelPackage}"
|
||||||
implementation "com.tencent.vasdolly:writer:${apkChannelPackage}"
|
|
||||||
|
|
||||||
implementation "com.j256.ormlite:ormlite-android:${ormlite}"
|
implementation "com.j256.ormlite:ormlite-android:${ormlite}"
|
||||||
implementation "com.j256.ormlite:ormlite-core:${ormlite}"
|
implementation "com.j256.ormlite:ormlite-core:${ormlite}"
|
||||||
@ -345,10 +238,11 @@ dependencies {
|
|||||||
})
|
})
|
||||||
implementation "com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-exo_player2:$gsyVideo"
|
implementation "com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-exo_player2:$gsyVideo"
|
||||||
|
|
||||||
|
// implementation "androidx.work:work-runtime:${workManager}"
|
||||||
|
|
||||||
implementation "com.llew.huawei:verifier:${verifier}"
|
implementation "com.llew.huawei:verifier:${verifier}"
|
||||||
|
|
||||||
teaImplementation "com.bytedance.applog:RangersAppLog-Lite-cn:${bytedanceApplog}"
|
teaImplementation "com.bytedance.applog:RangersAppLog-Lite-cn:${bytedanceApplog}"
|
||||||
teaImplementation "com.bytedance.applog:RangersAppLog-All-convert:${bytedanceApplog}"
|
|
||||||
|
|
||||||
implementation "net.lingala.zip4j:zip4j:${zip4j}"
|
implementation "net.lingala.zip4j:zip4j:${zip4j}"
|
||||||
|
|
||||||
@ -357,17 +251,15 @@ dependencies {
|
|||||||
|
|
||||||
implementation "com.lg:easyfloat:${easyFloat}"
|
implementation "com.lg:easyfloat:${easyFloat}"
|
||||||
|
|
||||||
|
implementation "io.github.florent37:shapeofview:${shapeOfView}"
|
||||||
|
|
||||||
implementation "com.lg:apksig:${apksig}"
|
implementation "com.lg:apksig:${apksig}"
|
||||||
|
|
||||||
implementation "com.lg:gid:${gid}"
|
implementation "com.lg:gid:${gid}"
|
||||||
|
|
||||||
implementation "com.lg:shortcut:${shortcut}"
|
compileOnly "com.github.axen1314.lancet:lancet-base:${lancet_version}"
|
||||||
|
|
||||||
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:${desugarJdkLibs}"
|
|
||||||
|
|
||||||
kapt "com.alibaba:arouter-compiler:$arouterVersion"
|
kapt "com.alibaba:arouter-compiler:$arouterVersion"
|
||||||
|
|
||||||
implementation project(':ndownload')
|
|
||||||
implementation project(':vspace-bridge:vspace')
|
implementation project(':vspace-bridge:vspace')
|
||||||
|
|
||||||
implementation (project(':module_common')) {
|
implementation (project(':module_common')) {
|
||||||
@ -376,47 +268,14 @@ dependencies {
|
|||||||
implementation(project(':module_login')) {
|
implementation(project(':module_login')) {
|
||||||
exclude group: 'androidx.swiperefreshlayout'
|
exclude group: 'androidx.swiperefreshlayout'
|
||||||
}
|
}
|
||||||
implementation(project(':module_setting')) {
|
implementation(project(':module_setting_compose')) {
|
||||||
exclude group: 'androidx.swiperefreshlayout'
|
exclude group: 'androidx.swiperefreshlayout'
|
||||||
}
|
}
|
||||||
// implementation(project(':module_setting_compose')) {
|
// 默认不接入光能模块,提高编译速度
|
||||||
|
// debugImplementation(project(':module_energy')) {
|
||||||
// exclude group: 'androidx.swiperefreshlayout'
|
// exclude group: 'androidx.swiperefreshlayout'
|
||||||
// }
|
// }
|
||||||
implementation(project(':module_core_feature')) {
|
|
||||||
exclude group: 'androidx.swiperefreshlayout'
|
|
||||||
}
|
|
||||||
// implementation(project(':module_feedback')) {
|
|
||||||
// exclude group: 'androidx.swiperefreshlayout'
|
|
||||||
// }
|
|
||||||
implementation(project(':feature:new_feedback',)) {
|
|
||||||
exclude group: 'androidx.swiperefreshlayout'
|
|
||||||
}
|
|
||||||
implementation(project(':module_sensors_data')) {
|
|
||||||
exclude group: 'androidx.swiperefreshlayout'
|
|
||||||
}
|
|
||||||
implementation(project(':module_message')) {
|
|
||||||
exclude group: 'androidx.swiperefreshlayout'
|
|
||||||
}
|
|
||||||
// implementation(project(':feature:vpn'))
|
|
||||||
implementation(project(':feature:pkg'))
|
|
||||||
implementation(project(':feature:oaid'))
|
|
||||||
implementation(project(':feature:floating-window'))
|
|
||||||
implementation(project(':feature:csj_ad'))
|
|
||||||
// implementation(project(':feature:beizi_startup_ad'))
|
|
||||||
implementation(project(':feature:xapk-installer'))
|
|
||||||
implementation(project(':feature:qq_game')) {
|
|
||||||
exclude group: 'androidx.swiperefreshlayout'
|
|
||||||
}
|
|
||||||
internalImplementation(project(':module_internal_test'))
|
|
||||||
|
|
||||||
// 根据BUILD_PUSH_TYPE决定使用哪个推送SDK,目前默认使用阿里云推送
|
|
||||||
def pushProject = findProperty('BUILD_PUSH_TYPE') == 'jg'
|
|
||||||
? project(':feature:jg_push') : project(':feature:acloud_push')
|
|
||||||
implementation(pushProject) {
|
|
||||||
exclude group: 'androidx.swiperefreshlayout'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
File propFile = file('sign.properties')
|
File propFile = file('sign.properties')
|
||||||
if (propFile.exists()) {
|
if (propFile.exists()) {
|
||||||
Properties props = new Properties()
|
Properties props = new Properties()
|
||||||
@ -485,13 +344,6 @@ andResGuard {
|
|||||||
// 打开这个开关会合并所有哈希值相同的资源,但请不要过度依赖这个功能去除去冗余资源
|
// 打开这个开关会合并所有哈希值相同的资源,但请不要过度依赖这个功能去除去冗余资源
|
||||||
mergeDuplicatedRes = true
|
mergeDuplicatedRes = true
|
||||||
whiteList = [
|
whiteList = [
|
||||||
"R.xml.jpush*",
|
|
||||||
"R.drawable.jpush*",
|
|
||||||
"R.layout.jpush*",
|
|
||||||
"R.layout.push*",
|
|
||||||
"R.string.jg*",
|
|
||||||
"R.style.MyDialogStyle",
|
|
||||||
"R.style.JPushTheme",
|
|
||||||
"R.drawable.icon",
|
"R.drawable.icon",
|
||||||
"R.drawable.ic_bar_back",
|
"R.drawable.ic_bar_back",
|
||||||
"R.drawable.toolbar_search_icon",
|
"R.drawable.toolbar_search_icon",
|
||||||
@ -563,12 +415,7 @@ andResGuard {
|
|||||||
"R.drawable.suggest_add_pic_icon",
|
"R.drawable.suggest_add_pic_icon",
|
||||||
"R.drawable.icon_pic_add",
|
"R.drawable.icon_pic_add",
|
||||||
"R.drawable.ask_search_input_delete",
|
"R.drawable.ask_search_input_delete",
|
||||||
"R.drawable.suggest_pic_delete",
|
"R.drawable.suggest_pic_delete"
|
||||||
"R.id.cardIv",
|
|
||||||
"R.id.cardMask",
|
|
||||||
"R.id.cardGradientMask",
|
|
||||||
"R.id.gameIconIv",
|
|
||||||
"R.id.titleContainer"
|
|
||||||
]
|
]
|
||||||
compressFilePattern = [
|
compressFilePattern = [
|
||||||
"*.png",
|
"*.png",
|
||||||
@ -577,7 +424,7 @@ andResGuard {
|
|||||||
"*.gif",
|
"*.gif",
|
||||||
]
|
]
|
||||||
sevenzip {
|
sevenzip {
|
||||||
artifact = 'io.github.leon406:SevenZip:1.2.22.5'
|
artifact = 'com.tencent.mm:SevenZip:1.2.20'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
0
module_lib/quick_login_android_5.9.4.aar → app/libs/quick_login_android_5.9.4.aar
Normal file → Executable file
0
module_lib/quick_login_android_5.9.4.aar → app/libs/quick_login_android_5.9.4.aar
Normal file → Executable file
@ -17,32 +17,15 @@
|
|||||||
-dontwarn com.j256.**
|
-dontwarn com.j256.**
|
||||||
|
|
||||||
### app models
|
### app models
|
||||||
|
-keep class com.gh.common.view.* {*;}
|
||||||
-keep class com.gh.gamecenter.db.info.* {*;}
|
-keep class com.gh.gamecenter.db.info.* {*;}
|
||||||
-keep class com.gh.gamecenter.entity.** {<fields>;}
|
-keep class com.gh.gamecenter.entity.* {*;}
|
||||||
-keep class com.gh.gamecenter.qa.entity.** {<fields>;}
|
-keep class com.gh.gamecenter.qa.entity.* {*;}
|
||||||
-keep class com.gh.download.DownloadDataSimpleEntity {<fields>;}
|
|
||||||
-keep class com.gh.gamecenter.floatingwindow.FloatingWindowEntity {<fields>;}
|
|
||||||
-keep class com.gh.gamecenter.BR
|
|
||||||
-keep class com.gh.gamecenter.retrofit.* {*;}
|
-keep class com.gh.gamecenter.retrofit.* {*;}
|
||||||
-keep class com.gh.gamecenter.eventbus.* {*;}
|
-keep class com.gh.gamecenter.eventbus.* {*;}
|
||||||
-keep class com.gh.gamecenter.home.gamecollection.carousel.GameCollectionStackLayout {*;}
|
-keep class com.gh.gamecenter.video.detail.* {*;}
|
||||||
-keep class com.gh.gamecenter.home.gamecollection.carousel.GameCollectionStackAnimation {*;}
|
-keep class com.gh.gamecenter.home.gamecollection.* {*;}
|
||||||
|
|
||||||
# Prevent R8 from leaving Data object members always null
|
|
||||||
-keepclassmembers,allowobfuscation class * {
|
|
||||||
@com.google.gson.annotations.SerializedName <fields>;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Prevent proguard from stripping interface information from TypeAdapter, TypeAdapterFactory,
|
|
||||||
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
|
|
||||||
-keep class * extends com.google.gson.TypeAdapter
|
|
||||||
-keep class * implements com.google.gson.TypeAdapterFactory
|
|
||||||
-keep class * implements com.google.gson.JsonSerializer
|
|
||||||
-keep class * implements com.google.gson.JsonDeserializer
|
|
||||||
|
|
||||||
# Retain generic signatures of TypeToken and its subclasses with R8 version 3.0 and higher.
|
|
||||||
-keep,allowobfuscation,allowshrinking class com.google.gson.reflect.TypeToken
|
|
||||||
-keep,allowobfuscation,allowshrinking class * extends com.google.gson.reflect.TypeToken
|
|
||||||
|
|
||||||
# TODO What's this ?
|
# TODO What's this ?
|
||||||
-ignorewarnings
|
-ignorewarnings
|
||||||
@ -56,7 +39,7 @@
|
|||||||
-dontwarn com.shuyu.gsyvideoplayer.utils.**
|
-dontwarn com.shuyu.gsyvideoplayer.utils.**
|
||||||
-keep class tv.danmaku.ijk.* { *; }
|
-keep class tv.danmaku.ijk.* { *; }
|
||||||
-dontwarn tv.danmaku.ijk.**
|
-dontwarn tv.danmaku.ijk.**
|
||||||
-keep public class * extends android.view.View {
|
-keep public class * extends android.view.View{
|
||||||
*** get*();
|
*** get*();
|
||||||
void set*(***);
|
void set*(***);
|
||||||
public <init>(android.content.Context);
|
public <init>(android.content.Context);
|
||||||
@ -64,35 +47,22 @@
|
|||||||
public <init>(android.content.Context, android.util.AttributeSet, int);
|
public <init>(android.content.Context, android.util.AttributeSet, int);
|
||||||
}
|
}
|
||||||
|
|
||||||
### RecyclerView.jumpToPositionForSmoothScroller
|
|
||||||
-keep class androidx.recyclerview.widget.RecyclerView {
|
|
||||||
void jumpToPositionForSmoothScroller(int);
|
|
||||||
}
|
|
||||||
|
|
||||||
### ViewBinding 反射相关
|
|
||||||
-keep class * implements androidx.viewbinding.ViewBinding {
|
|
||||||
public static *** inflate(android.view.LayoutInflater, android.view.ViewGroup, boolean);
|
|
||||||
}
|
|
||||||
|
|
||||||
### TEA
|
### TEA
|
||||||
-keep class com.gh.gamecenter.TeaHelper { *; }
|
-keep class com.gh.gamecenter.TeaHelper { *; }
|
||||||
|
|
||||||
### EasyFloat
|
### EasyFloat
|
||||||
-keep class com.lzf.easyfloat.* {*;}
|
-keep class com.lzf.easyfloat.* {*;}
|
||||||
|
|
||||||
### 广点通SDK
|
### dokit
|
||||||
-dontwarn com.qq.gdt.action.**
|
-keep class com.didichuxing.** {*;}
|
||||||
-keep class com.qq.gdt.action.** {*;}
|
|
||||||
-keep public class com.tencent.turingfd.sdk.**
|
|
||||||
|
|
||||||
### 神马 SDK
|
# Flutter模块
|
||||||
-dontwarn com.gism.**
|
-keep class com.gh.common.util.DirectUtils {
|
||||||
|
public static void directToQa(...);
|
||||||
-keepclasseswithmembers class * {
|
public static void directToQaCollection(...);
|
||||||
native <methods>;
|
public static void directToGift(...);
|
||||||
}
|
public static void directToConcernInfo(...);
|
||||||
|
public static void directToFeedback(...);
|
||||||
-keepclassmembernames class com.contrarywind.view.WheelView {
|
public static void directToSuggestion(...);
|
||||||
private int itemsVisible;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,16 +1,14 @@
|
|||||||
package com.gh.gamecenter.provider
|
package com.gh.gamecenter.provider
|
||||||
|
|
||||||
import android.app.Activity
|
|
||||||
import android.app.Application
|
import android.app.Application
|
||||||
import android.text.TextUtils
|
import android.text.TextUtils
|
||||||
import com.gh.gamecenter.common.constant.Config
|
import com.gh.gamecenter.common.constant.Config
|
||||||
import com.gh.gamecenter.common.constant.Constants
|
import com.gh.gamecenter.common.constant.Constants
|
||||||
import com.gh.gamecenter.common.utils.PackageFlavorHelper
|
import com.gh.gamecenter.common.utils.PackageFlavorHelper
|
||||||
import com.gh.gamecenter.core.provider.IFlavorProvider
|
|
||||||
import com.gh.gamecenter.core.utils.SPUtils
|
import com.gh.gamecenter.core.utils.SPUtils
|
||||||
import com.tencent.vasdolly.helper.ChannelReaderUtil
|
import com.leon.channel.helper.ChannelReaderUtil
|
||||||
|
|
||||||
class FlavorProviderImp : IFlavorProvider {
|
class ChannelProviderImp : ChannelProvider {
|
||||||
override fun getChannelStr(application: Application): String {
|
override fun getChannelStr(application: Application): String {
|
||||||
var channel = ChannelReaderUtil.getChannel(application)
|
var channel = ChannelReaderUtil.getChannel(application)
|
||||||
if (channel == null || TextUtils.isEmpty(channel.trim())) {
|
if (channel == null || TextUtils.isEmpty(channel.trim())) {
|
||||||
@ -25,16 +23,4 @@ class FlavorProviderImp : IFlavorProvider {
|
|||||||
}
|
}
|
||||||
return channel
|
return channel
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun init(application: Application, activity: Activity, activateRatio: Int) {
|
|
||||||
// do nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun logEvent(content: String) {
|
|
||||||
// do nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun logCoreEvent() {
|
|
||||||
// do nothing
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@ -1,44 +0,0 @@
|
|||||||
package com.gh.gamecenter
|
|
||||||
|
|
||||||
import android.app.Application
|
|
||||||
import com.lightgame.utils.Utils
|
|
||||||
import com.qq.gdt.action.ActionParam
|
|
||||||
import com.qq.gdt.action.ActionType
|
|
||||||
import com.qq.gdt.action.GDTAction
|
|
||||||
import com.qq.gdt.action.PrivateController
|
|
||||||
import org.json.JSONObject
|
|
||||||
|
|
||||||
object GdtHelper {
|
|
||||||
private const val USER_ACTION_SET_ID = "1201041887"
|
|
||||||
private const val APP_SECRET_ID = "c29cc5c48cf540c43b4b97363bb09216"
|
|
||||||
|
|
||||||
private const val KS_USER_ACTION_SET_ID = "1201032128"
|
|
||||||
private const val KS_APP_SECRET_ID = "9bdbbb81d4e0bd333a2a581f9ee36986"
|
|
||||||
|
|
||||||
@JvmStatic
|
|
||||||
fun init(application: Application, channel: String) {
|
|
||||||
GDTAction.setPrivateController(object : PrivateController() {
|
|
||||||
override fun isCanUsePhoneState(): Boolean {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
if (channel == "KS_GDT_GHZS_MC01") {
|
|
||||||
GDTAction.init(application, KS_USER_ACTION_SET_ID, KS_APP_SECRET_ID, channel)
|
|
||||||
} else {
|
|
||||||
GDTAction.init(application, USER_ACTION_SET_ID, APP_SECRET_ID, channel)
|
|
||||||
}
|
|
||||||
Utils.log("init GdtHelper")
|
|
||||||
}
|
|
||||||
|
|
||||||
@JvmStatic
|
|
||||||
fun logAction(type: String) {
|
|
||||||
when (type) {
|
|
||||||
"EVENT_ACTIVE" -> GDTAction.logAction(ActionType.START_APP)
|
|
||||||
"active_register" -> GDTAction.logAction(ActionType.REGISTER)
|
|
||||||
"EVENT_NEXTDAY_STAY" -> GDTAction.logAction(ActionType.START_APP, JSONObject().apply {
|
|
||||||
put(ActionParam.Key.LENGTH_OF_STAY, 1)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,52 +0,0 @@
|
|||||||
package com.gh.gamecenter.provider
|
|
||||||
|
|
||||||
import android.app.Activity
|
|
||||||
import android.app.Application
|
|
||||||
import android.text.TextUtils
|
|
||||||
import com.gh.gamecenter.GdtHelper
|
|
||||||
import com.gh.gamecenter.core.provider.IFlavorProvider
|
|
||||||
import com.gh.gamecenter.core.utils.SPUtils
|
|
||||||
import com.gh.gamecenter.core.utils.TimeUtils
|
|
||||||
import com.halo.assistant.HaloApp
|
|
||||||
import com.tencent.vasdolly.helper.ChannelReaderUtil
|
|
||||||
|
|
||||||
class FlavorProviderImp : IFlavorProvider {
|
|
||||||
|
|
||||||
override fun init(application: Application, activity: Activity, activateRatio: Int) {
|
|
||||||
GdtHelper.init(application, getChannelStr(application))
|
|
||||||
|
|
||||||
if (HaloApp.getInstance().isBrandNewInstall) {
|
|
||||||
logEvent("EVENT_ACTIVE")
|
|
||||||
SPUtils.setLong("TIME_OF_BRAND_NEW_INSTALL", System.currentTimeMillis() / 1000)
|
|
||||||
} else {
|
|
||||||
val shouldSendRetentionLogEvent =
|
|
||||||
SPUtils.getBoolean("SHOULD_SEND_RETENTION_EVENT", true)
|
|
||||||
val installTimeNotToday =
|
|
||||||
!TimeUtils.isToday(SPUtils.getLong("TIME_OF_BRAND_NEW_INSTALL", System.currentTimeMillis() / 1000))
|
|
||||||
if (shouldSendRetentionLogEvent && installTimeNotToday) {
|
|
||||||
logEvent("EVENT_NEXTDAY_STAY")
|
|
||||||
SPUtils.setBoolean("SHOULD_SEND_RETENTION_EVENT", false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getChannelStr(application: Application): String {
|
|
||||||
var channel = ChannelReaderUtil.getChannel(application)
|
|
||||||
if (channel == null || TextUtils.isEmpty(channel.trim())) {
|
|
||||||
channel = GDT_DEFAULT_CHANNEL
|
|
||||||
}
|
|
||||||
return channel
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun logEvent(content: String) {
|
|
||||||
GdtHelper.logAction(content)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun logCoreEvent() {
|
|
||||||
// do nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
private const val GDT_DEFAULT_CHANNEL = "GDT_GHZS_01"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
@ -1,32 +0,0 @@
|
|||||||
package com.gh.vspace
|
|
||||||
|
|
||||||
import android.content.Intent
|
|
||||||
import android.view.LayoutInflater
|
|
||||||
import android.view.View
|
|
||||||
import android.view.ViewGroup
|
|
||||||
import androidx.annotation.Keep
|
|
||||||
import com.gh.gamecenter.R
|
|
||||||
import com.gh.gamecenter.databinding.LayoutPersonalOtherItemBinding
|
|
||||||
import com.gh.vspace.installexternalgames.InstallExternalGameActivity
|
|
||||||
|
|
||||||
@Keep
|
|
||||||
class ExternalGameUsage : IExternalGamesUsage {
|
|
||||||
override fun addInstallExternalGameButton(viewParent: ViewGroup) {
|
|
||||||
val context = viewParent.context
|
|
||||||
viewParent.findViewById<View>(R.id.install_game_from_external) ?: run {
|
|
||||||
val binding = LayoutPersonalOtherItemBinding.inflate(LayoutInflater.from(context)).apply {
|
|
||||||
root.id = R.id.install_game_from_external
|
|
||||||
titleTv.text = context.getString(R.string.title_install_external_game)
|
|
||||||
iconIv.setImageResource(R.drawable.ic_personal_my_game)
|
|
||||||
root.setOnClickListener {
|
|
||||||
VHelper.connectService {
|
|
||||||
context.startActivity(
|
|
||||||
InstallExternalGameActivity.getIntent(context)
|
|
||||||
.apply { flags = flags or Intent.FLAG_ACTIVITY_NEW_TASK })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
viewParent.addView(binding.root, 0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames;
|
|
||||||
|
|
||||||
public class Constants {
|
|
||||||
public static final String TAG = "从SD卡安装";
|
|
||||||
}
|
|
||||||
@ -1,47 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames
|
|
||||||
|
|
||||||
import android.view.ViewGroup
|
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
|
||||||
import com.gh.gamecenter.common.utils.goneIf
|
|
||||||
import com.gh.gamecenter.common.utils.toBinding
|
|
||||||
|
|
||||||
class ExternalGameAdapter(private val games: List<ExternalGameUiState>, private val onItemClickListener: OnItemClickListener) :
|
|
||||||
RecyclerView.Adapter<ExternalGameViewHolder>() {
|
|
||||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ExternalGameViewHolder {
|
|
||||||
return ExternalGameViewHolder(parent.toBinding())
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getItemCount(): Int {
|
|
||||||
return games.size
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onBindViewHolder(holder: ExternalGameViewHolder, position: Int) {
|
|
||||||
val item = games[position]
|
|
||||||
holder.apkInfo.text = item.externalGameEntity.let { item ->
|
|
||||||
"""
|
|
||||||
应用程序名:${item.appName}
|
|
||||||
版本号:${item.apkVersion}
|
|
||||||
包名: ${item.apkPackageName}
|
|
||||||
路径:${item.apkPath}
|
|
||||||
""".trimIndent()
|
|
||||||
}
|
|
||||||
holder.install.goneIf(item.isInstalled) {
|
|
||||||
holder.install.setOnClickListener {
|
|
||||||
onItemClickListener.onItemClick(item, OnItemClickListener.ClickType.CLICK_INSTALL)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
holder.uninstall.goneIf(!item.isInstalled) {
|
|
||||||
holder.uninstall.setOnClickListener {
|
|
||||||
onItemClickListener.onItemClick(
|
|
||||||
item,
|
|
||||||
OnItemClickListener.ClickType.CLICK_UNINSTALL
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
holder.start.goneIf(!item.isInstalled) {
|
|
||||||
holder.start.setOnClickListener {
|
|
||||||
onItemClickListener.onItemClick(item, OnItemClickListener.ClickType.CLICK_START)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames
|
|
||||||
|
|
||||||
data class ExternalGameEntity(
|
|
||||||
val cpuAbi: Set<String>,
|
|
||||||
val apkPath: String,
|
|
||||||
val apkFileName: String,
|
|
||||||
val appName: String,
|
|
||||||
val apkVersion: String,
|
|
||||||
val apkPackageName: String,
|
|
||||||
val lastModified: Long,
|
|
||||||
)
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames
|
|
||||||
|
|
||||||
data class ExternalGameUiState(
|
|
||||||
val externalGameEntity: ExternalGameEntity,
|
|
||||||
val isInstalled: Boolean
|
|
||||||
)
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames
|
|
||||||
|
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
|
||||||
import com.gh.gamecenter.databinding.LayoutExternalGameItemBinding
|
|
||||||
|
|
||||||
class ExternalGameViewHolder(binding: LayoutExternalGameItemBinding) : RecyclerView.ViewHolder(binding.root) {
|
|
||||||
val apkInfo = binding.apkFileInfo
|
|
||||||
val install = binding.btnInstall
|
|
||||||
val uninstall = binding.btnUninstall
|
|
||||||
val start = binding.btnStart
|
|
||||||
}
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.Intent
|
|
||||||
import android.os.Bundle
|
|
||||||
import com.gh.gamecenter.common.base.activity.ToolBarActivity
|
|
||||||
|
|
||||||
class InstallExternalGameActivity : ToolBarActivity() {
|
|
||||||
companion object {
|
|
||||||
fun getIntent(context: Context): Intent {
|
|
||||||
return getTargetIntent(context, InstallExternalGameActivity::class.java, InstallExternalGameFragment::class.java, Bundle())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,153 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames
|
|
||||||
|
|
||||||
import android.app.Dialog
|
|
||||||
import android.os.Bundle
|
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
|
||||||
import com.gh.common.util.DialogUtils
|
|
||||||
import com.gh.gamecenter.R
|
|
||||||
import com.gh.gamecenter.common.base.fragment.ToolbarFragment
|
|
||||||
import com.gh.gamecenter.common.exposure.meta.MetaUtil
|
|
||||||
import com.gh.gamecenter.common.utils.dip2px
|
|
||||||
import com.gh.gamecenter.common.utils.toColor
|
|
||||||
import com.gh.gamecenter.common.utils.viewModelProvider
|
|
||||||
import com.gh.gamecenter.common.view.divider.HorizontalDividerItemDecoration
|
|
||||||
import com.gh.gamecenter.core.AppExecutor
|
|
||||||
import com.gh.gamecenter.databinding.FragmentInstallExternalGamesBinding
|
|
||||||
import com.gh.vspace.VHelper
|
|
||||||
import com.halo.assistant.HaloApp
|
|
||||||
import com.lg.vspace.VirtualAppManager
|
|
||||||
import io.reactivex.Single
|
|
||||||
import io.reactivex.android.schedulers.AndroidSchedulers
|
|
||||||
import io.reactivex.disposables.Disposable
|
|
||||||
import io.reactivex.schedulers.Schedulers
|
|
||||||
|
|
||||||
class InstallExternalGameFragment : ToolbarFragment(), OnItemClickListener {
|
|
||||||
|
|
||||||
private val mViewModel: InstallExternalGameViewModel by lazy { viewModelProvider() }
|
|
||||||
|
|
||||||
private lateinit var mBinding: FragmentInstallExternalGamesBinding
|
|
||||||
|
|
||||||
private val games = mutableListOf<ExternalGameUiState>()
|
|
||||||
private var adapter = ExternalGameAdapter(games, this)
|
|
||||||
|
|
||||||
private var uninstallDisposable: Disposable? = null
|
|
||||||
|
|
||||||
override fun getLayoutId() = 0
|
|
||||||
|
|
||||||
override fun getInflatedLayout() =
|
|
||||||
FragmentInstallExternalGamesBinding.inflate(layoutInflater).apply { mBinding = this }.root
|
|
||||||
|
|
||||||
private lateinit var dialog: Dialog
|
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
|
||||||
super.onCreate(savedInstanceState)
|
|
||||||
setNavigationTitle(getString(com.gh.gamecenter.R.string.title_install_external_game))
|
|
||||||
initView()
|
|
||||||
mViewModel.gamesList.observe(this) {
|
|
||||||
if (dialog.isShowing) {
|
|
||||||
dialog.dismiss()
|
|
||||||
}
|
|
||||||
games.clear()
|
|
||||||
games.addAll(
|
|
||||||
it.map {
|
|
||||||
ExternalGameUiState(it, VHelper.isInstalled(it.apkPackageName))
|
|
||||||
}
|
|
||||||
)
|
|
||||||
adapter.notifyDataSetChanged()
|
|
||||||
}
|
|
||||||
mViewModel.scanPaths()
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun initView() {
|
|
||||||
dialog = DialogUtils.showWaitDialog(requireContext(), "")
|
|
||||||
mBinding.externalGamesList.let {
|
|
||||||
it.adapter = adapter
|
|
||||||
it.layoutManager = LinearLayoutManager(requireContext())
|
|
||||||
val itemDecoration = HorizontalDividerItemDecoration.Builder(requireContext())
|
|
||||||
.size(2F.dip2px())
|
|
||||||
.color(R.color.ui_divider.toColor(requireContext()))
|
|
||||||
.build()
|
|
||||||
if (it.itemDecorationCount != 0) {
|
|
||||||
it.removeItemDecorationAt(0)
|
|
||||||
}
|
|
||||||
it.addItemDecoration(itemDecoration)
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onDestroy() {
|
|
||||||
super.onDestroy()
|
|
||||||
if (dialog.isShowing) {
|
|
||||||
dialog.dismiss()
|
|
||||||
}
|
|
||||||
if (uninstallDisposable?.isDisposed != true) {
|
|
||||||
uninstallDisposable?.dispose()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
override fun onItemClick(externalGameUiState: ExternalGameUiState, clickType: OnItemClickListener.ClickType) {
|
|
||||||
when (clickType) {
|
|
||||||
OnItemClickListener.ClickType.CLICK_INSTALL -> {
|
|
||||||
install(externalGameUiState)
|
|
||||||
}
|
|
||||||
OnItemClickListener.ClickType.CLICK_UNINSTALL -> {
|
|
||||||
uninstall(externalGameUiState)
|
|
||||||
}
|
|
||||||
OnItemClickListener.ClickType.CLICK_START -> {
|
|
||||||
start(externalGameUiState)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun install(externalGameUiState: ExternalGameUiState) {
|
|
||||||
val bit =
|
|
||||||
externalGameUiState.externalGameEntity.cpuAbi.let { if (it.size == 1 && it.contains("armeabi-v7a")) "32" else "64" }
|
|
||||||
if (VHelper.showDialogIfVSpaceIsNeeded(
|
|
||||||
requireContext(),
|
|
||||||
"",
|
|
||||||
externalGameUiState.externalGameEntity.appName,
|
|
||||||
"",
|
|
||||||
bit = bit
|
|
||||||
)
|
|
||||||
) return
|
|
||||||
dialog.show()
|
|
||||||
externalGameUiState.externalGameEntity.let {
|
|
||||||
val intent = VirtualAppManager.getInstallIntent(context, it.apkPath, it.apkPackageName)
|
|
||||||
requireActivity().startActivity(intent)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun uninstall(externalGameUiState: ExternalGameUiState) {
|
|
||||||
dialog.show()
|
|
||||||
uninstallDisposable = Single.create<Void> {
|
|
||||||
VHelper.uninstall(externalGameUiState.externalGameEntity.apkPackageName)
|
|
||||||
}.subscribeOn(Schedulers.from(AppExecutor.lightWeightIoExecutor)).observeOn(AndroidSchedulers.mainThread())
|
|
||||||
.subscribe { t1, t2 ->
|
|
||||||
if (dialog.isShowing) {
|
|
||||||
dialog.dismiss()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private fun start(externalGameUiState: ExternalGameUiState) {
|
|
||||||
val intent = VirtualAppManager.get().getStartGameIntent(
|
|
||||||
externalGameUiState.externalGameEntity.apkPackageName,
|
|
||||||
"",
|
|
||||||
externalGameUiState.externalGameEntity.appName,
|
|
||||||
"",
|
|
||||||
MetaUtil.getBase64EncodedAndroidId(),
|
|
||||||
HaloApp.getInstance().gid,
|
|
||||||
com.gh.gamecenter.BuildConfig.VERSION_NAME,
|
|
||||||
HaloApp.getInstance().channel,
|
|
||||||
"",
|
|
||||||
""
|
|
||||||
)
|
|
||||||
requireActivity().startActivity(intent)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,64 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames
|
|
||||||
|
|
||||||
import android.app.Application
|
|
||||||
import android.content.pm.PackageManager
|
|
||||||
import android.os.Environment
|
|
||||||
import androidx.lifecycle.AndroidViewModel
|
|
||||||
import androidx.lifecycle.LiveData
|
|
||||||
import androidx.lifecycle.MutableLiveData
|
|
||||||
import com.gh.gamecenter.core.runOnIoThread
|
|
||||||
import com.gh.vspace.VHelper
|
|
||||||
import com.lg.vspace.helper.compat.NativeLibraryHelperCompat
|
|
||||||
import com.lightgame.utils.Utils
|
|
||||||
import io.reactivex.android.schedulers.AndroidSchedulers
|
|
||||||
import io.reactivex.disposables.Disposable
|
|
||||||
|
|
||||||
class InstallExternalGameViewModel(application: Application) : AndroidViewModel(application) {
|
|
||||||
private val _gamesList = MutableLiveData<List<ExternalGameEntity>>(listOf())
|
|
||||||
val gamesList: LiveData<List<ExternalGameEntity>> = _gamesList
|
|
||||||
private val pkgManger = getApplication<Application>().packageManager
|
|
||||||
private var disposable: Disposable = VHelper.callSite.observeOn(AndroidSchedulers.mainThread()).subscribe {
|
|
||||||
scanPaths()
|
|
||||||
}
|
|
||||||
|
|
||||||
fun scanPaths() {
|
|
||||||
runOnIoThread {
|
|
||||||
_gamesList.postValue(Environment.getExternalStorageDirectory().walk().maxDepth(1)
|
|
||||||
.filter { it.isHidden.not() }
|
|
||||||
.filter { it.isFile }
|
|
||||||
.onEach {
|
|
||||||
Utils.log(Constants.TAG, "获得文件: ${it.name}")
|
|
||||||
}
|
|
||||||
.filter { it.extension == "apk" }
|
|
||||||
.map {
|
|
||||||
val packageInfo = pkgManger.getPackageArchiveInfo(
|
|
||||||
it.absolutePath,
|
|
||||||
PackageManager.GET_META_DATA or PackageManager.GET_ACTIVITIES
|
|
||||||
)
|
|
||||||
packageInfo?.let { packageInfo ->
|
|
||||||
val applicationInfo = packageInfo.applicationInfo
|
|
||||||
applicationInfo.publicSourceDir = it.absolutePath
|
|
||||||
applicationInfo.sourceDir = it.absolutePath
|
|
||||||
ExternalGameEntity(
|
|
||||||
cpuAbi = NativeLibraryHelperCompat.getPackageAbiList(it.absolutePath),
|
|
||||||
apkPath = it.absolutePath,
|
|
||||||
apkFileName = it.name,
|
|
||||||
apkPackageName = packageInfo.packageName,
|
|
||||||
apkVersion = packageInfo.versionName,
|
|
||||||
appName = pkgManger.getApplicationLabel(applicationInfo).toString(),
|
|
||||||
lastModified = it.lastModified()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}.filterNotNull()
|
|
||||||
.toList().sortedByDescending { it.lastModified }
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
override fun onCleared() {
|
|
||||||
super.onCleared()
|
|
||||||
disposable.dispose()
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
package com.gh.vspace.installexternalgames
|
|
||||||
|
|
||||||
interface OnItemClickListener {
|
|
||||||
|
|
||||||
enum class ClickType {
|
|
||||||
CLICK_INSTALL, CLICK_UNINSTALL, CLICK_START
|
|
||||||
}
|
|
||||||
|
|
||||||
fun onItemClick(externalGameUiState: ExternalGameUiState, clickType: ClickType)
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent">
|
|
||||||
|
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
|
||||||
android:id="@+id/external_games_list"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent" />
|
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/apk_file_info"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textSize="20sp"
|
|
||||||
tools:text="文件名:\n路径:" />
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<Button
|
|
||||||
android:id="@+id/btn_install"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/text_install"
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible" />
|
|
||||||
|
|
||||||
<Button
|
|
||||||
android:id="@+id/btn_uninstall"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/text_uninstall"
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible" />
|
|
||||||
|
|
||||||
<Button
|
|
||||||
android:id="@+id/btn_start"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/text_start"
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible" />
|
|
||||||
</LinearLayout>
|
|
||||||
</LinearLayout>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<string name="title_install_external_game">從SD卡安裝</string>
|
|
||||||
<string name="text_install">安裝</string>
|
|
||||||
<string name="text_uninstall">卸載</string>
|
|
||||||
<string name="text_start">啟動</string>
|
|
||||||
</resources>
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<item name="install_game_from_external" type="id" />
|
|
||||||
</resources>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<string name="title_install_external_game">从SD卡安装</string>
|
|
||||||
<string name="text_install">安装</string>
|
|
||||||
<string name="text_uninstall">卸载</string>
|
|
||||||
<string name="text_start">启动</string>
|
|
||||||
</resources>
|
|
||||||
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<network-security-config>
|
|
||||||
<base-config cleartextTrafficPermitted="true">
|
|
||||||
<trust-anchors>
|
|
||||||
<!-- Trust user added CAs while debuggable only -->
|
|
||||||
<certificates src="user" />
|
|
||||||
<certificates src="system" />
|
|
||||||
</trust-anchors>
|
|
||||||
</base-config>
|
|
||||||
</network-security-config>
|
|
||||||
@ -1,30 +0,0 @@
|
|||||||
package com.gh.gamecenter
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import com.kwai.monitor.log.TurboAgent
|
|
||||||
import com.kwai.monitor.log.TurboConfig
|
|
||||||
|
|
||||||
object KuaishouHelper {
|
|
||||||
private val mAppId by lazy { BuildConfig.SDK_APP_ID.ifEmpty { "81537" } }
|
|
||||||
private val mAppName by lazy { BuildConfig.SDK_APP_NAME.ifEmpty { "guanghuanzhushou_1" } }
|
|
||||||
|
|
||||||
@JvmStatic
|
|
||||||
fun init(context: Context, channel: String) {
|
|
||||||
TurboAgent.init(
|
|
||||||
TurboConfig.TurboConfigBuilder.create(context)
|
|
||||||
.setAppId(mAppId)
|
|
||||||
.setAppName(mAppName)
|
|
||||||
.setAppChannel(channel)
|
|
||||||
.build()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
@JvmStatic
|
|
||||||
fun onEvent(type: String) {
|
|
||||||
when (type) {
|
|
||||||
"EVENT_ACTIVE" -> TurboAgent.onAppActive()
|
|
||||||
"active_register" -> TurboAgent.onRegister()
|
|
||||||
"EVENT_NEXTDAY_STAY" -> TurboAgent.onNextDayStay()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,65 +0,0 @@
|
|||||||
package com.gh.gamecenter.provider
|
|
||||||
|
|
||||||
import android.app.Activity
|
|
||||||
import android.app.Application
|
|
||||||
import android.text.TextUtils
|
|
||||||
import com.gh.gamecenter.BuildConfig
|
|
||||||
import com.gh.gamecenter.KuaishouHelper
|
|
||||||
import com.gh.gamecenter.core.AppExecutor
|
|
||||||
import com.gh.gamecenter.core.provider.IFlavorProvider
|
|
||||||
import com.gh.gamecenter.core.utils.SPUtils
|
|
||||||
import com.gh.gamecenter.core.utils.TimeUtils
|
|
||||||
import com.gh.gamecenter.core.utils.ToastUtils
|
|
||||||
import com.halo.assistant.HaloApp
|
|
||||||
import com.kwai.monitor.payload.TurboHelper
|
|
||||||
import com.tencent.vasdolly.helper.ChannelReaderUtil
|
|
||||||
|
|
||||||
class FlavorProviderImp : IFlavorProvider {
|
|
||||||
|
|
||||||
override fun init(application: Application, activity: Activity, activateRatio: Int) {
|
|
||||||
KuaishouHelper.init(application, getChannelStr(application))
|
|
||||||
|
|
||||||
if (HaloApp.getInstance().isBrandNewInstall) {
|
|
||||||
logEvent("EVENT_ACTIVE")
|
|
||||||
SPUtils.setLong("TIME_OF_BRAND_NEW_INSTALL", System.currentTimeMillis() / 1000)
|
|
||||||
} else {
|
|
||||||
val shouldSendRetentionLogEvent =
|
|
||||||
SPUtils.getBoolean("SHOULD_SEND_RETENTION_EVENT", true)
|
|
||||||
val installTimeNotToday =
|
|
||||||
!TimeUtils.isToday(SPUtils.getLong("TIME_OF_BRAND_NEW_INSTALL", System.currentTimeMillis() / 1000))
|
|
||||||
if (shouldSendRetentionLogEvent && installTimeNotToday) {
|
|
||||||
logEvent("EVENT_NEXTDAY_STAY")
|
|
||||||
SPUtils.setBoolean("SHOULD_SEND_RETENTION_EVENT", false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getChannelStr(application: Application): String {
|
|
||||||
var channel = if (BuildConfig.USE_DEFAULT_CHANNEL_SDK) {
|
|
||||||
ChannelReaderUtil.getChannel(application)
|
|
||||||
} else {
|
|
||||||
TurboHelper.getChannel(application)
|
|
||||||
}
|
|
||||||
if (channel == null || TextUtils.isEmpty(channel.trim())) {
|
|
||||||
channel = KUAISHOU_CHANNEL
|
|
||||||
}
|
|
||||||
return channel
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun logEvent(content: String) {
|
|
||||||
KuaishouHelper.onEvent(content)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun logCoreEvent() {
|
|
||||||
logEvent("EVENT_KEY_PATH_OPTIMIZATION")
|
|
||||||
if (BuildConfig.ACTIVATE_REPORTING_RATIO == 1) {
|
|
||||||
AppExecutor.uiExecutor.executeWithDelay({
|
|
||||||
ToastUtils.toast("关键行为 EVENT_KEY_PATH_OPTIMIZATION")
|
|
||||||
}, 500)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
private const val KUAISHOU_CHANNEL = "KS-GHZS-01"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -6,19 +6,6 @@
|
|||||||
<queries>
|
<queries>
|
||||||
<package android:name="com.gh.gamecenter" />
|
<package android:name="com.gh.gamecenter" />
|
||||||
</queries>
|
</queries>
|
||||||
|
|
||||||
<queries>
|
|
||||||
<package android:name="com.lg.vspace" />
|
|
||||||
</queries>
|
|
||||||
|
|
||||||
<!-- 华为/荣耀角标 -->
|
|
||||||
<uses-permission android:name="com.huawei.android.launcher.permission.CHANGE_BADGE "/>
|
|
||||||
<uses-permission android:name="com.hihonor.android.launcher.permission.CHANGE_BADGE" />
|
|
||||||
<!-- vivo角标 -->
|
|
||||||
<uses-permission android:name="com.vivo.notification.permission.BADGE_ICON" />
|
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
|
||||||
tools:ignore="ScopedStorage" />
|
|
||||||
<!-- 允许应用程序访问网络连接 -->
|
<!-- 允许应用程序访问网络连接 -->
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<!-- 允许应用程序写入外部存储,如SD卡上写文件 -->
|
<!-- 允许应用程序写入外部存储,如SD卡上写文件 -->
|
||||||
@ -54,8 +41,7 @@
|
|||||||
<!-- 如果有视频相关的广告且使用textureView播放,请务必添加,否则黑屏 -->
|
<!-- 如果有视频相关的广告且使用textureView播放,请务必添加,否则黑屏 -->
|
||||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
|
|
||||||
<uses-sdk tools:overrideLibrary="
|
<uses-sdk tools:overrideLibrary="com.shuyu.gsyvideoplayer,
|
||||||
com.shuyu.gsyvideoplayer,
|
|
||||||
com.shuyu.gsyvideoplayer.lib,
|
com.shuyu.gsyvideoplayer.lib,
|
||||||
com.haroldadmin.whatthestack,
|
com.haroldadmin.whatthestack,
|
||||||
com.shuyu.gsyvideoplayer.armv7a,
|
com.shuyu.gsyvideoplayer.armv7a,
|
||||||
@ -85,14 +71,7 @@
|
|||||||
androidx.compose.animation.core,
|
androidx.compose.animation.core,
|
||||||
androidx.constraintlayout.compose,
|
androidx.constraintlayout.compose,
|
||||||
androidx.compose.ui.test.manifest,
|
androidx.compose.ui.test.manifest,
|
||||||
com.bytedance.sdk.openadsdk,
|
androidx.compose.ui.tooling.preview"/>
|
||||||
com.bykv.vk.openvk,
|
|
||||||
com.bytedance.tools,
|
|
||||||
androidx.compose.ui.tooling.preview,
|
|
||||||
com.tencent.qqmini,
|
|
||||||
com.tencent.qqmini.minigame.external,
|
|
||||||
com.tencent.qqmini.minigame.opensdk,
|
|
||||||
com.tencent.qqmini.union.ad" />
|
|
||||||
|
|
||||||
<!-- 去掉 SDK 一些流氓权限 -->
|
<!-- 去掉 SDK 一些流氓权限 -->
|
||||||
<uses-permission
|
<uses-permission
|
||||||
@ -107,10 +86,6 @@
|
|||||||
android:name="android.permission.GET_TASKS"
|
android:name="android.permission.GET_TASKS"
|
||||||
tools:node="remove" />
|
tools:node="remove" />
|
||||||
|
|
||||||
<uses-permission
|
|
||||||
android:name="android.permission.ACCESS_COARSE_LOCATION"
|
|
||||||
tools:node="remove" />
|
|
||||||
|
|
||||||
<supports-screens
|
<supports-screens
|
||||||
android:anyDensity="true"
|
android:anyDensity="true"
|
||||||
android:largeScreens="true"
|
android:largeScreens="true"
|
||||||
@ -125,17 +100,10 @@
|
|||||||
android:icon="@mipmap/logo"
|
android:icon="@mipmap/logo"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:largeHeap="true"
|
android:largeHeap="true"
|
||||||
android:networkSecurityConfig="@xml/network_security_config"
|
|
||||||
android:preserveLegacyExternalStorage="true"
|
|
||||||
android:requestLegacyExternalStorage="true"
|
|
||||||
android:resizeableActivity="true"
|
android:resizeableActivity="true"
|
||||||
android:theme="@style/AppCompatTheme.APP"
|
android:theme="@style/AppCompatTheme.APP"
|
||||||
tools:replace="android:name,android:allowBackup"
|
tools:replace="android:name,android:allowBackup"
|
||||||
tools:targetApi="r">
|
tools:targetApi="n">
|
||||||
|
|
||||||
<meta-data
|
|
||||||
android:name="EasyGoClient"
|
|
||||||
android:value="true" />
|
|
||||||
|
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="io.sentry.auto-init"
|
android:name="io.sentry.auto-init"
|
||||||
@ -146,8 +114,6 @@
|
|||||||
android:name="io.sentry.breadcrumbs.system-events"
|
android:name="io.sentry.breadcrumbs.system-events"
|
||||||
android:value="false" />
|
android:value="false" />
|
||||||
|
|
||||||
<service android:name="com.gh.ndownload.NDownloadService" />
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.SplashScreenActivity"
|
android:name="com.gh.gamecenter.SplashScreenActivity"
|
||||||
android:configChanges="keyboardHidden|orientation|screenSize"
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
||||||
@ -164,15 +130,10 @@
|
|||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.MainActivity"
|
android:name="com.gh.gamecenter.MainActivity"
|
||||||
android:configChanges="orientation|screenSize|keyboardHidden"
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
||||||
android:exported="true"
|
|
||||||
android:launchMode="singleTask"
|
android:launchMode="singleTask"
|
||||||
android:screenOrientation="portrait"
|
android:screenOrientation="portrait"
|
||||||
android:theme="@style/AppCompatTheme.APP"
|
android:theme="@style/AppCompatTheme.APP"
|
||||||
android:windowSoftInputMode="stateAlwaysHidden|adjustResize">
|
android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.DownloadManagerActivity"
|
android:name="com.gh.gamecenter.DownloadManagerActivity"
|
||||||
@ -204,7 +165,7 @@
|
|||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.newsdetail.NewsDetailActivity"
|
android:name="com.gh.gamecenter.NewsDetailActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
@ -259,7 +220,7 @@
|
|||||||
android:windowSoftInputMode="stateHidden" />
|
android:windowSoftInputMode="stateHidden" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.libao.LibaoDetailActivity"
|
android:name="com.gh.gamecenter.LibaoDetailActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
@ -288,10 +249,13 @@
|
|||||||
android:configChanges="orientation|screenSize|keyboardHidden"
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.SuggestionActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.VoteActivity"
|
android:name="com.gh.gamecenter.VoteActivity"
|
||||||
android:screenOrientation="portrait"
|
android:screenOrientation="portrait"
|
||||||
android:windowSoftInputMode="stateAlwaysHidden|adjustPan" />
|
android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.WeiBoShareActivity"
|
android:name="com.gh.gamecenter.WeiBoShareActivity"
|
||||||
@ -318,19 +282,51 @@
|
|||||||
android:name="com.gh.gamecenter.CollectionActivity"
|
android:name="com.gh.gamecenter.CollectionActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.MessageActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.UserInfoEditActivity"
|
android:name="com.gh.gamecenter.UserInfoEditActivity"
|
||||||
android:screenOrientation="portrait"
|
android:screenOrientation="portrait"
|
||||||
android:windowSoftInputMode="stateHidden" />
|
android:windowSoftInputMode="stateHidden" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.qa.answer.detail.AnswerDetailActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.qa.answer.edit.AnswerEditActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.ConcernInfoActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.InfoActivity"
|
android:name="com.gh.gamecenter.InfoActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.MessageKeFuActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.MessageInviteActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.MessageVoteActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".qa.questions.invite.QuestionsInviteActivity"
|
android:name=".qa.questions.invite.QuestionsInviteActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.qa.myqa.MyAskActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.qa.questions.edit.QuestionEditActivity"
|
android:name="com.gh.gamecenter.qa.questions.edit.QuestionEditActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
@ -368,6 +364,10 @@
|
|||||||
android:name="com.gh.gamecenter.qa.article.edit.ArticleEditActivity"
|
android:name="com.gh.gamecenter.qa.article.edit.ArticleEditActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.qa.article.MyArticleActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.qa.article.draft.ArticleDraftActivity"
|
android:name="com.gh.gamecenter.qa.article.draft.ArticleDraftActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
@ -406,6 +406,10 @@
|
|||||||
android:name="com.gh.gamecenter.history.HistoryActivity"
|
android:name="com.gh.gamecenter.history.HistoryActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.personalhome.rating.RatingActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.gamedetail.rating.logs.CommentLogsActivity"
|
android:name="com.gh.gamecenter.gamedetail.rating.logs.CommentLogsActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
@ -431,6 +435,10 @@
|
|||||||
android:name="com.gh.gamecenter.qa.editor.LocalMediaActivity"
|
android:name="com.gh.gamecenter.qa.editor.LocalMediaActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.mygame.PlayedGameActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.servers.GameServersActivity"
|
android:name="com.gh.gamecenter.servers.GameServersActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
@ -447,6 +455,15 @@
|
|||||||
android:name="com.halo.assistant.fragment.user.UserPortraitCropImageActivity"
|
android:name="com.halo.assistant.fragment.user.UserPortraitCropImageActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.HelpAndFeedbackActivity"
|
||||||
|
android:screenOrientation="portrait"
|
||||||
|
android:windowSoftInputMode="stateHidden" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.gh.gamecenter.help.HelpDetailActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.qa.comment.CommentActivity"
|
android:name="com.gh.gamecenter.qa.comment.CommentActivity"
|
||||||
android:theme="@style/Theme.Transparent"
|
android:theme="@style/Theme.Transparent"
|
||||||
@ -471,13 +488,12 @@
|
|||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".gamedetail.fuli.kaifu.ServersCalendarManagementActivity"
|
android:name="com.gh.gamecenter.QaActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".gamedetail.fuli.kaifu.ServersSubscribedGameListActivity"
|
android:name=".qa.answer.draft.AnswerDraftActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".gamedetail.rating.RatingFoldActivity"
|
android:name=".gamedetail.rating.RatingFoldActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
@ -489,6 +505,10 @@
|
|||||||
android:name=".video.poster.PosterEditActivity"
|
android:name=".video.poster.PosterEditActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".video.poster.PosterClipActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".forum.detail.ForumDetailActivity"
|
android:name=".forum.detail.ForumDetailActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
@ -594,10 +614,6 @@
|
|||||||
android:name=".game.commoncollection.detail.CommonCollectionDetailActivity"
|
android:name=".game.commoncollection.detail.CommonCollectionDetailActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name=".game.commoncollection.detail.CustomCommonCollectionDetailActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".gamecollection.detail.GameCollectionDetailActivity"
|
android:name=".gamecollection.detail.GameCollectionDetailActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
@ -618,8 +634,8 @@
|
|||||||
<!-- android:theme="@android:style/Theme.Translucent" />-->
|
<!-- android:theme="@android:style/Theme.Translucent" />-->
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.SkipActivity"
|
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
|
android:name="com.gh.gamecenter.SkipActivity"
|
||||||
android:theme="@style/Theme.AppCompat.Light.Fullscreen.Transparent">
|
android:theme="@style/Theme.AppCompat.Light.Fullscreen.Transparent">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<data android:scheme="ghzhushou" />
|
<data android:scheme="ghzhushou" />
|
||||||
@ -638,19 +654,6 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<!-- 光环助手授权登陆页面 -->
|
|
||||||
<activity
|
|
||||||
android:name=".authorization.AuthorizationActivity"
|
|
||||||
android:exported="true"
|
|
||||||
android:launchMode="singleTask"
|
|
||||||
android:screenOrientation="portrait">
|
|
||||||
<intent-filter>
|
|
||||||
<data android:scheme="ghzhushou_authorization" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.teenagermode.TeenagerModeActivity"
|
android:name="com.gh.gamecenter.teenagermode.TeenagerModeActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
@ -689,7 +692,7 @@
|
|||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.gh.gamecenter.toolbox.ToolBoxActivity"
|
android:name="com.gh.gamecenter.toolbox.ToolBoxBlockActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
@ -726,53 +729,6 @@
|
|||||||
android:name=".discovery.DiscoveryActivity"
|
android:name=".discovery.DiscoveryActivity"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name=".cloudarchive.CloudArchiveManagerActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name=".savegame.GameArchiveListActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name=".discovery.interestedgame.InterestedGameActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name=".servers.gametest2.GameServerTestV2Activity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.gh.gamecenter.gamecollection.hotlist.GameCollectionHotListActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.gh.gamecenter.qgame.QGameHomeWrapperActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.gh.gamecenter.qgame.QGameSearchActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.gh.gamecenter.gamecollection.hotlist.GameCollectionListDetailActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.gh.gamecenter.UserAuthActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.gh.gamecenter.SplashAdActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.gh.gamecenter.wrapper.ToolbarWrapperActivity"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
|
|
||||||
<activity android:name=".forum.home.CommunityActivity"
|
|
||||||
android:screenOrientation="portrait"/>
|
|
||||||
|
|
||||||
<!-- <activity-->
|
<!-- <activity-->
|
||||||
<!-- android:name="${applicationId}.douyinapi.DouYinEntryActivity"-->
|
<!-- android:name="${applicationId}.douyinapi.DouYinEntryActivity"-->
|
||||||
<!-- android:launchMode="singleTask"-->
|
<!-- android:launchMode="singleTask"-->
|
||||||
@ -795,26 +751,6 @@
|
|||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:exported="true" />
|
android:exported="true" />
|
||||||
|
|
||||||
<provider
|
|
||||||
android:name="com.gh.vspace.VFileProvider"
|
|
||||||
android:authorities="${applicationId}.virtual_file_provider"
|
|
||||||
android:exported="false"
|
|
||||||
android:grantUriPermissions="true">
|
|
||||||
<meta-data
|
|
||||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
||||||
android:resource="@xml/provider_paths" />
|
|
||||||
</provider>
|
|
||||||
|
|
||||||
|
|
||||||
<service
|
|
||||||
android:name=".aidl.CommunicationService"
|
|
||||||
android:enabled="true"
|
|
||||||
android:exported="true">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="com.gh.gamecenter.aidl.CommunicationService" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<!-- <provider-->
|
<!-- <provider-->
|
||||||
<!-- android:name="androidx.startup.InitializationProvider"-->
|
<!-- android:name="androidx.startup.InitializationProvider"-->
|
||||||
<!-- android:authorities="${applicationId}.androidx-startup"-->
|
<!-- android:authorities="${applicationId}.androidx-startup"-->
|
||||||
@ -827,8 +763,6 @@
|
|||||||
<!-- tools:node="remove" />-->
|
<!-- tools:node="remove" />-->
|
||||||
<!-- </provider>-->
|
<!-- </provider>-->
|
||||||
|
|
||||||
<service android:name="com.gh.gamecenter.install.InstallService" />
|
|
||||||
|
|
||||||
<receiver
|
<receiver
|
||||||
android:name="com.gh.gamecenter.receiver.DownloadReceiver"
|
android:name="com.gh.gamecenter.receiver.DownloadReceiver"
|
||||||
android:exported="false">
|
android:exported="false">
|
||||||
@ -844,11 +778,6 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.gh.common.xapk.XapkInstallReceiver"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/Theme.Transparent" />
|
|
||||||
|
|
||||||
<receiver
|
<receiver
|
||||||
android:name="com.gh.gamecenter.receiver.ActivitySkipReceiver"
|
android:name="com.gh.gamecenter.receiver.ActivitySkipReceiver"
|
||||||
android:exported="true">
|
android:exported="true">
|
||||||
@ -856,6 +785,40 @@
|
|||||||
<action android:name="com.gh.gamecenter.ACTIVITYSKIP" />
|
<action android:name="com.gh.gamecenter.ACTIVITYSKIP" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
|
<!-- 梦工厂配置 开始 -->
|
||||||
|
<!--<meta-data
|
||||||
|
android:name="MGC_APPID"
|
||||||
|
android:value="1001276" />
|
||||||
|
|
||||||
|
<provider
|
||||||
|
android:name="com.leto.game.base.provider.LetoFileProvider"
|
||||||
|
android:authorities="${applicationId}.leto.fileprovider"
|
||||||
|
android:exported="false"
|
||||||
|
android:grantUriPermissions="true">
|
||||||
|
<meta-data
|
||||||
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||||
|
android:resource="@xml/leto_file_path"
|
||||||
|
tools:replace="android:resource" />
|
||||||
|
</provider>-->
|
||||||
|
<!-- 梦工厂配置 结束 -->
|
||||||
|
|
||||||
|
<!-- 穿山甲配置 开始 -->
|
||||||
|
<!--<provider
|
||||||
|
android:name="com.bytedance.sdk.openadsdk.TTFileProvider"
|
||||||
|
android:authorities="${applicationId}.TTFileProvider"
|
||||||
|
android:exported="false"
|
||||||
|
android:grantUriPermissions="true">
|
||||||
|
<meta-data
|
||||||
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||||
|
android:resource="@xml/file_paths" />
|
||||||
|
</provider>
|
||||||
|
|
||||||
|
<provider
|
||||||
|
android:name="com.bytedance.sdk.openadsdk.multipro.TTMultiProvider"
|
||||||
|
android:authorities="${applicationId}.TTMultiProvider"
|
||||||
|
android:exported="false" />-->
|
||||||
|
<!-- 穿山甲配置 结束 -->
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
@ -1,27 +0,0 @@
|
|||||||
{
|
|
||||||
"easyGoVersion": "1.0",
|
|
||||||
"client": "com.gh.gamecenter",
|
|
||||||
"logicEntities": [
|
|
||||||
{
|
|
||||||
"head": {
|
|
||||||
"function": "magicwindow",
|
|
||||||
"required": "true"
|
|
||||||
},
|
|
||||||
"body": {
|
|
||||||
"mode":"1",
|
|
||||||
"activityPairs":[
|
|
||||||
{"from":"com.gh.gamecenter.MainActivity","to":"*"}
|
|
||||||
],
|
|
||||||
"defaultDualActivities": {
|
|
||||||
"mainPages": "com.gh.gamecenter.MainActivity"
|
|
||||||
},
|
|
||||||
"UX": {
|
|
||||||
"supportRotationUxCompat": "false",
|
|
||||||
"isDraggable": "true"
|
|
||||||
},
|
|
||||||
"transActivities":[
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@ -6,6 +6,8 @@
|
|||||||
<link rel="stylesheet" type="text/css" href="normalize.css">
|
<link rel="stylesheet" type="text/css" href="normalize.css">
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
<link rel="stylesheet" type="text/css" href="video-js.min.css">
|
<link rel="stylesheet" type="text/css" href="video-js.min.css">
|
||||||
|
<!-- <link rel="stylesheet" href="https://static-web.ghzs.com/website-static/lib/video-js.min.css">--> <!--在web页面播放视频-->
|
||||||
|
<!--<link rel="stylesheet" type="text/css" href="https://resource.ghzs.com/css/halo_app.css">-->
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body style="overflow-x: hidden; word-break: break-all;">
|
<body style="overflow-x: hidden; word-break: break-all;">
|
||||||
@ -13,5 +15,8 @@
|
|||||||
<script type="text/javascript" src="zepto.min.js"></script>
|
<script type="text/javascript" src="zepto.min.js"></script>
|
||||||
<script type="text/javascript" src="rich_editor.js"></script>
|
<script type="text/javascript" src="rich_editor.js"></script>
|
||||||
<script type="text/javascript" src="video.min.js"></script>
|
<script type="text/javascript" src="video.min.js"></script>
|
||||||
|
<!--<script src="https://static-web.ghzs.com/website-static/lib/video.min.js"></script>--> <!--在web页面播放视频-->
|
||||||
|
<!--<script type="text/javascript" src="content.js"></script>-->
|
||||||
|
<!--<script type="text/javascript" src="https://resource.ghzs.com/js/halo_app.js"></script>-->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
BIN
app/src/main/assets/fonts/d_din_bold.ttf
Normal file
BIN
app/src/main/assets/fonts/d_din_bold.ttf
Normal file
Binary file not shown.
1
app/src/main/assets/lottie/click_guide.json
Normal file
1
app/src/main/assets/lottie/click_guide.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"v":"5.5.9","fr":60,"ip":0,"op":90,"w":1080,"h":202,"nm":"click","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"椭圆形","sr":1,"ks":{"o":{"a":0,"k":20,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[204,1455,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[24,24],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆形","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"椭圆形","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[10]},{"t":70,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[204,1455,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":39,"s":[100,100,100]},{"t":49,"s":[110,110,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[36,36],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆形","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"圆环","refId":"comp_0","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.531],"y":[0]},"t":28,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":38,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.526],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.446],"y":[0]},"t":63,"s":[50]},{"t":82,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[125.951,79.658,0],"ix":2},"a":{"a":0,"k":[205.951,1458.658,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.601,0.601,0.333],"y":[0,0,0]},"t":28,"s":[50,50,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.528,0.528,0.333],"y":[0,0,0]},"t":38,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.526,0.526,0.333],"y":[0,0,0]},"t":48,"s":[120,120,100]},{"t":63,"s":[100,100,100]}],"ix":6}},"ao":0,"w":1080,"h":1920,"ip":0,"op":120,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"点击手","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.596],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":10,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.515],"y":[0]},"t":63,"s":[100]},{"t":83,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.507],"y":[0]},"t":10,"s":[6]},{"t":30,"s":[2]}],"ix":10},"p":{"a":0,"k":[178.982,123.325,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.489,0.489,0.333],"y":[0,0,0]},"t":10,"s":[100,100,100]},{"t":30,"s":[90,90,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.33,-8.3],[3.89,0.27],[-4.4,-1.68],[-4.33,-0.67],[-4.08,9.32],[3.33,5.44],[3.39,4.6],[0.87,-3.7],[3.6,-0.86],[1.03,-0.21],[2.34,-0.53],[0.96,1.15],[4.22,5.48],[-1.18,-4.56]],"o":[[1.11,1.71],[-3.89,-0.27],[6.42,2.5],[4.33,0.66],[1.63,-5.32],[-3.34,-5.45],[-1.68,-2.1],[-0.71,3.14],[-3.43,0.95],[-0.57,0.08],[-3.86,1.12],[-3.23,-3.94],[-1.89,-2.28],[2.42,4.64]],"v":[[-5.387,9.698],[-10.717,8.498],[-12.327,15.628],[5.813,21.748],[23.313,11.778],[20.273,-1.202],[11.563,-13.962],[5.393,-12.362],[1.083,-13.722],[-2.087,-9.742],[-5.707,-11.752],[-8.777,-7.572],[-18.297,-20.542],[-23.827,-17.832]],"c":true},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"路径备份 2","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":0,"bm":0}],"markers":[]}
|
||||||
1
app/src/main/assets/lottie/double_click_guide.json
Normal file
1
app/src/main/assets/lottie/double_click_guide.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"v":"5.6.4","fr":25,"ip":0,"op":35,"w":1080,"h":214,"nm":"点赞","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"椭圆形 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.588],"y":[0]},"t":17,"s":[15]},{"t":20,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[468.04,73.68,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.659,0.659,0.333],"y":[0,0,0]},"t":10,"s":[50,50,100]},{"t":19,"s":[150,150,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[24,24],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆形","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":10,"op":1510,"st":10,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"椭圆形 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.588],"y":[0]},"t":27,"s":[15]},{"t":30,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[468.04,73.68,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.659,0.659,0.333],"y":[0,0,0]},"t":20,"s":[50,50,100]},{"t":28,"s":[140,140,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[24,24],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆形","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":20,"op":1520,"st":20,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"路径备份 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.602],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":5,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.663],"y":[0]},"t":24,"s":[100]},{"t":29,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[531.02,129.675,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.514,0.514,0.333],"y":[0,0,0]},"t":5,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.533,0.533,0.333],"y":[0,0,0]},"t":10,"s":[90,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.586,0.586,0.333],"y":[0,0,0]},"t":15,"s":[95,95,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.499,0.499,0.333],"y":[0,0,0]},"t":19,"s":[90,90,100]},{"t":24,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.33,-8.3],[3.89,0.27],[-4.4,-1.68],[-4.33,-0.67],[-4.08,9.32],[3.33,5.44],[3.39,4.6],[0.87,-3.7],[3.6,-0.86],[1.03,-0.21],[2.34,-0.53],[0.96,1.15],[4.22,5.48],[-1.18,-4.56]],"o":[[1.11,1.71],[-3.89,-0.27],[6.42,2.5],[4.33,0.66],[1.63,-5.32],[-3.34,-5.45],[-1.68,-2.1],[-0.71,3.14],[-3.43,0.95],[-0.57,0.08],[-3.86,1.12],[-3.23,-3.94],[-1.89,-2.28],[2.42,4.64]],"v":[[-5.387,9.698],[-10.717,8.498],[-12.327,15.628],[5.813,21.748],[23.313,11.778],[20.273,-1.202],[11.563,-13.962],[5.393,-12.362],[1.083,-13.722],[-2.087,-9.742],[-5.707,-11.752],[-8.777,-7.572],[-18.297,-20.542],[-23.827,-17.832]],"c":true},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"路径备份 2","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1500,"st":0,"bm":0}],"markers":[]}
|
||||||
@ -1 +0,0 @@
|
|||||||
{"v":"5.9.1","fr":60,"ip":0,"op":100,"w":64,"h":64,"nm":"多版本下载提示_dark","ddd":0,"assets":[{"id":"comp_0","nm":"arrow 合成_dark","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"arrow","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.333],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.667],"y":[0]},"t":76,"s":[100]},{"t":100,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.333,"y":1},"o":{"x":0.364,"y":0},"t":0,"s":[28,-12,0],"to":[0,6.382,0],"ti":[0,-0.284,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":24,"s":[28,28,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.667,"y":0},"t":76,"s":[28,28,0],"to":[0,6.667,0],"ti":[0,-6.667,0]},{"t":100,"s":[28,68,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,2],[0,-2]],"c":false},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-2,0],[0,2]],"c":false},"ix":2},"nm":"路径 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[2,0],[0,2]],"c":false},"ix":2},"nm":"路径 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.333,0.333],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":0,"s":[80,120]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.667,0.667],"y":[0,0]},"t":24,"s":[100,100]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.667,0.667],"y":[0,0]},"t":76,"s":[100,100]},{"t":100,"s":[80,120]}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"组 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.156862750649,0.533333361149,0.878431379795,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"stroke","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[400,400],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"Vector 97","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":100,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"arrow 合成_dark","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[32,32,0],"ix":2,"l":2},"a":{"a":0,"k":[28,28,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":56,"h":56,"ip":0,"op":100,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"base","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[32,32,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[15,15],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.156862750649,0.533333361149,0.878431379795,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"stroke","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.137254908681,0.137254908681,0.137254908681,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"filling","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[400,400],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"Ellipse 44","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":100,"st":0,"bm":0}],"markers":[]}
|
|
||||||
@ -1 +0,0 @@
|
|||||||
{"v":"5.9.1","fr":60,"ip":0,"op":100,"w":64,"h":64,"nm":"多版本下载提示_light","ddd":0,"assets":[{"id":"comp_0","nm":"arrow 合成_light","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"arrow","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.333],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.667],"y":[0]},"t":76,"s":[100]},{"t":100,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.333,"y":1},"o":{"x":0.364,"y":0},"t":0,"s":[28,-12,0],"to":[0,6.382,0],"ti":[0,-0.284,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":24,"s":[28,28,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.667,"y":0},"t":76,"s":[28,28,0],"to":[0,6.667,0],"ti":[0,-6.667,0]},{"t":100,"s":[28,68,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,2],[0,-2]],"c":false},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-2,0],[0,2]],"c":false},"ix":2},"nm":"路径 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[2,0],[0,2]],"c":false},"ix":2},"nm":"路径 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.333,0.333],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":0,"s":[80,120]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.667,0.667],"y":[0,0]},"t":24,"s":[100,100]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.667,0.667],"y":[0,0]},"t":76,"s":[100,100]},{"t":100,"s":[80,120]}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"组 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.141176477075,0.588235318661,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"stroke","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[400,400],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"Vector 97","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":100,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"arrow 合成_light","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[32,32,0],"ix":2,"l":2},"a":{"a":0,"k":[28,28,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":56,"h":56,"ip":0,"op":100,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"base","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[32,32,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[15,15],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.141176477075,0.588235318661,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"stroke","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"filling","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[400,400],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"Ellipse 44","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":100,"st":0,"bm":0}],"markers":[]}
|
|
||||||
@ -1 +0,0 @@
|
|||||||
{"v":"5.9.1","fr":60,"ip":0,"op":60,"w":144,"h":144,"nm":"icon_change","ddd":0,"assets":[{"id":"comp_0","nm":"icon_change_detail","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"stroke1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[37.04,52.994,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.533,-0.143],[0.143,-0.533],[1.487,-1.304],[1.961,-0.258],[1.774,0.875],[0.709,0.661],[0,0],[0,0.445],[0,0],[-0.276,0],[0,0],[-0.013,0],[0,0],[0.315,-0.315],[0,0],[-0.682,-0.336],[-1.569,0.207],[-1.19,1.043],[-0.41,1.528]],"o":[[0.533,0.143],[-0.512,1.91],[-1.487,1.304],[-1.961,0.258],[-0.879,-0.433],[0,0],[-0.315,0.315],[0,0],[0,-0.276],[0,0],[0.013,0],[0,0],[0.445,0],[0,0],[0.555,0.508],[1.419,0.7],[1.569,-0.207],[1.19,-1.043],[0.143,-0.533]],"v":[[8.605,-4.301],[9.312,-3.076],[6.247,1.854],[0.958,4.25],[-4.77,3.304],[-7.163,1.652],[-8.493,2.982],[-9.347,2.628],[-9.347,-1.665],[-8.847,-2.165],[-8.161,-2.165],[-8.122,-2.165],[-4.554,-2.165],[-4.2,-1.311],[-5.748,0.237],[-3.885,1.51],[0.697,2.267],[4.928,0.35],[7.381,-3.594]],"c":true},"ix":2},"nm":"stroke1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,1,1,1,1,1,1,1,0,1,0.5,0.8,1,0.6],"ix":9}},"s":{"a":0,"k":[-5.347,-4.665],"ix":5},"e":{"a":0,"k":[8.653,-4.665],"ix":6},"t":1,"nm":"color1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"stroke1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"stroke2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[34.96,19.006,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.961,0.258],[-1.774,-0.875],[-0.709,-0.661],[0,0],[0,-0.445],[0,0],[0.276,0],[0,0],[0.012,0],[0,0],[-0.315,0.315],[0,0],[0.682,0.336],[1.569,-0.207],[1.19,-1.043],[0.41,-1.528],[0.533,0.143],[-0.143,0.533],[-1.487,1.304]],"o":[[1.961,-0.258],[0.879,0.433],[0,0],[0.315,-0.315],[0,0],[0,0.276],[0,0],[-0.012,0],[0,0],[-0.445,0],[0,0],[-0.555,-0.508],[-1.419,-0.7],[-1.569,0.207],[-1.19,1.043],[-0.143,0.533],[-0.533,-0.143],[0.512,-1.91],[1.487,-1.304]],"v":[[-0.958,-4.25],[4.77,-3.304],[7.163,-1.652],[8.493,-2.982],[9.347,-2.628],[9.347,1.665],[8.847,2.165],[8.16,2.165],[8.123,2.165],[4.554,2.165],[4.2,1.311],[5.748,-0.237],[3.885,-1.51],[-0.697,-2.267],[-4.928,-0.35],[-7.381,3.594],[-8.605,4.301],[-9.312,3.076],[-6.247,-1.854]],"c":true},"ix":2},"nm":"stroke2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,1,1,1,1,1,1,1,0,1,0.5,0.8,1,0.6],"ix":9}},"s":{"a":0,"k":[5.347,4.665],"ix":5},"e":{"a":0,"k":[-8.653,4.665],"ix":6},"t":1,"nm":"color2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"stroke2","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":300,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"icon_change_detail","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":0,"s":[0]},{"t":36,"s":[360]}],"ix":10},"p":{"a":0,"k":[72,72,0],"ix":2,"l":2},"a":{"a":0,"k":[36,36,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":72,"h":72,"ip":0,"op":300,"st":0,"bm":0}],"markers":[]}
|
|
||||||
@ -1 +0,0 @@
|
|||||||
{"v":"5.9.1","fr":60,"ip":0,"op":60,"w":72,"h":72,"nm":"icon_title_change","ddd":0,"assets":[{"id":"comp_0","nm":"arrow","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"arrow_e_dark","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[29.25,30,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.701,0.456],[-1.627,-0.674],[-0.705,-0.667],[0,0],[-0.552,0],[0,-0.552],[0,0],[0.552,0],[0,0],[0.012,0],[0,0],[0,0.552],[-0.552,0],[0,0],[0.615,0.255],[1.276,-0.342],[0.804,-1.048],[0,-1.321],[-0.804,-1.048],[-1.276,-0.342],[-1.22,0.505],[-0.66,1.144],[-0.478,-0.276],[0.276,-0.478],[1.627,-0.674],[1.701,0.456],[1.072,1.397],[0,1.761],[-1.072,1.397]],"o":[[1.701,-0.456],[0.909,0.376],[0,0],[0,-0.552],[0.552,0],[0,0],[0,0.552],[0,0],[-0.012,0],[0,0],[-0.552,0],[0,-0.552],[0,0],[-0.493,-0.435],[-1.22,-0.505],[-1.276,0.342],[-0.804,1.048],[0,1.321],[0.804,1.048],[1.276,0.342],[1.22,-0.505],[0.276,-0.478],[0.478,0.276],[-0.881,1.525],[-1.627,0.674],[-1.701,-0.456],[-1.072,-1.397],[0,-1.761],[1.072,-1.397]],"v":[[-1.821,-7.727],[3.311,-7.391],[5.75,-5.809],[5.75,-6.5],[6.75,-7.5],[7.75,-6.5],[7.75,-3.5],[6.75,-2.5],[6.331,-2.5],[6.295,-2.5],[3.75,-2.5],[2.75,-3.5],[3.75,-4.5],[4.219,-4.5],[2.546,-5.543],[-1.303,-5.796],[-4.51,-3.653],[-5.75,0],[-4.51,3.653],[-1.303,5.796],[2.546,5.543],[5.446,3],[6.812,2.634],[7.178,4],[3.311,7.391],[-1.821,7.727],[-6.097,4.87],[-7.75,0],[-6.097,-4.87]],"c":true},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.158117651939,0.532358944416,0.878431379795,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"arrow_e_dark","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":300,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"arrow","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":0,"s":[0]},{"t":36,"s":[360]}],"ix":10},"p":{"a":0,"k":[36,36,0],"ix":2,"l":2},"a":{"a":0,"k":[30,30,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":60,"h":60,"ip":0,"op":300,"st":0,"bm":0}],"markers":[]}
|
|
||||||
@ -1 +0,0 @@
|
|||||||
{"v":"5.9.1","fr":60,"ip":0,"op":60,"w":72,"h":72,"nm":"icon_title_change","ddd":0,"assets":[{"id":"comp_0","nm":"arrow","fr":60,"layers":[{"ddd":0,"ind":2,"ty":4,"nm":"arrow_e_light","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[29.25,30,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.701,0.456],[-1.627,-0.674],[-0.705,-0.667],[0,0],[-0.552,0],[0,-0.552],[0,0],[0.552,0],[0,0],[0.012,0],[0,0],[0,0.552],[-0.552,0],[0,0],[0.615,0.255],[1.276,-0.342],[0.804,-1.048],[0,-1.321],[-0.804,-1.048],[-1.276,-0.342],[-1.22,0.505],[-0.66,1.144],[-0.478,-0.276],[0.276,-0.478],[1.627,-0.674],[1.701,0.456],[1.072,1.397],[0,1.761],[-1.072,1.397]],"o":[[1.701,-0.456],[0.909,0.376],[0,0],[0,-0.552],[0.552,0],[0,0],[0,0.552],[0,0],[-0.012,0],[0,0],[-0.552,0],[0,-0.552],[0,0],[-0.493,-0.435],[-1.22,-0.505],[-1.276,0.342],[-0.804,1.048],[0,1.321],[0.804,1.048],[1.276,0.342],[1.22,-0.505],[0.276,-0.478],[0.478,0.276],[-0.881,1.525],[-1.627,0.674],[-1.701,-0.456],[-1.072,-1.397],[0,-1.761],[1.072,-1.397]],"v":[[-1.821,-7.727],[3.311,-7.391],[5.75,-5.809],[5.75,-6.5],[6.75,-7.5],[7.75,-6.5],[7.75,-3.5],[6.75,-2.5],[6.331,-2.5],[6.295,-2.5],[3.75,-2.5],[2.75,-3.5],[3.75,-4.5],[4.219,-4.5],[2.546,-5.543],[-1.303,-5.796],[-4.51,-3.653],[-5.75,0],[-4.51,3.653],[-1.303,5.796],[2.546,5.543],[5.446,3],[6.812,2.634],[7.178,4],[3.311,7.391],[-1.821,7.727],[-6.097,4.87],[-7.75,0],[-6.097,-4.87]],"c":true},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.141176477075,0.588235318661,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"arrow_e_light","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":300,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"arrow","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":0,"s":[0]},{"t":36,"s":[360]}],"ix":10},"p":{"a":0,"k":[36,36,0],"ix":2,"l":2},"a":{"a":0,"k":[30,30,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":60,"h":60,"ip":0,"op":300,"st":0,"bm":0}],"markers":[]}
|
|
||||||
1
app/src/main/assets/lottie/slide_guide.json
Normal file
1
app/src/main/assets/lottie/slide_guide.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"v":"5.5.9","fr":60,"ip":0,"op":120,"w":1080,"h":586,"nm":"上滑","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":2,"ty":4,"nm":"手","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.642],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":6,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.558],"y":[0]},"t":60,"s":[100]},{"t":71,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.479,"y":0},"t":3,"s":[611,475,0],"to":[0,-62.75,0],"ti":[0,62.75,0]},{"t":40,"s":[611,98.5,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[90,90,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-7.78,-12.06],[5.68,0.39],[-6.42,-2.45],[-6.32,-0.97],[-5.95,13.55],[4.87,7.91],[4.94,6.69],[1.26,-5.37],[5.25,-1.25],[1.5,-0.3],[3.4,-0.77],[1.4,1.68],[6.15,7.98],[-1.73,-6.64]],"o":[[1.62,2.49],[-5.68,-0.39],[9.37,3.63],[6.31,0.98],[2.39,-7.74],[-4.87,-7.92],[-2.45,-3.05],[-1.05,4.57],[-4.99,1.39],[-0.83,0.13],[-5.63,1.63],[-4.71,-5.72],[-2.75,-3.31],[3.52,6.76]],"v":[[-7.86,14.26],[-15.64,12.52],[-17.99,22.89],[8.47,31.78],[33.98,17.29],[29.55,-1.59],[16.85,-20.15],[7.86,-17.83],[1.56,-19.8],[-3.05,-14.02],[-8.33,-16.94],[-12.44,-11.045],[-26.761,-30.19],[-34.75,-25.78]],"c":true},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"路径","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"矩形","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.715],"y":[0]},"t":57,"s":[100]},{"t":67,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[525,228.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.491,"y":0},"t":3,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[24.328,180.5],[-22,180.5],[-22,204.5],[24.328,204.5]],"c":true}]},{"t":40,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[24.328,-207.5],[-22,-207.5],[-22,204.5],[24.328,204.5]],"c":true}]}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"蒙版 1"}],"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[6,137],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":2,"ix":4},"nm":"矩形路径 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,1,1,1,1,1,1,1,0,1,0.5,0.5,1,0],"ix":9}},"s":{"a":0,"k":[0,-68.5],"ix":5},"e":{"a":0,"k":[0,68.5],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"矩形","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":33,"ix":3},"m":1,"ix":2,"nm":"修剪路径 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":3,"op":123,"st":3,"bm":0}],"markers":[]}
|
||||||
@ -1 +0,0 @@
|
|||||||
{"v":"5.12.2","fr":60,"ip":0,"op":40,"w":66,"h":66,"nm":"icon_tab_my","ddd":0,"assets":[{"id":"comp_0","nm":"icon","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"highlight","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[33.134,34.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":0.733},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,-0.004],[0.493,0],[0,0.004],[-0.493,0]],"o":[[0,0.004],[-0.493,0],[0,-0.004],[0.493,0]],"v":[[0.893,1.488],[0,1.496],[-0.893,1.488],[0,1.483]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.267},"t":10,"s":[{"i":[[0,-1.018],[1.793,0],[0,1.018],[-1.793,0]],"o":[[0,1.018],[-1.793,0],[0,-1.018],[1.793,0]],"v":[[2.914,-0.344],[0,1.5],[-2.914,-0.344],[0,-1.5]],"c":true}]},{"i":{"x":0.333,"y":1},"o":{"x":0.667,"y":0},"t":18,"s":[{"i":[[0,-1.181],[1.407,0],[0,1.181],[-1.407,0]],"o":[[0,1.181],[-1.407,0],[0,-1.181],[1.407,0]],"v":[[2.226,-0.341],[0,1.74],[-2.211,-0.341],[0,-1.74]],"c":true}]},{"i":{"x":0.333,"y":1},"o":{"x":0.667,"y":0},"t":26,"s":[{"i":[[0,-0.905],[1.381,0],[0,0.905],[-1.381,0]],"o":[[0,0.905],[-1.381,0],[0,-0.905],[1.381,0]],"v":[[2.5,-0.306],[0,1.333],[-2.5,-0.306],[0,-1.333]],"c":true}]},{"t":32,"s":[{"i":[[0,-1.018],[1.381,0],[0,1.018],[-1.381,0]],"o":[[0,1.018],[-1.381,0],[0,-1.018],[1.381,0]],"v":[[2.5,-0.344],[0,1.5],[-2.5,-0.344],[0,-1.5]],"c":true}]}],"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"color","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆形","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":60,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"body","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[33,34.204,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.866,0],[0,3.866],[3.866,0],[0,-3.866]],"o":[[3.866,0],[0,-3.866],[-3.866,0],[0,3.866]],"v":[[0,4.599],[7,-2.401],[0,-9.401],[-7,-2.401]],"c":true},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.207,0.359],[2.438,0],[1.189,-2.104],[-0.361,-0.204],[-0.204,0.361],[-1.915,0],[-0.932,-1.613],[-0.359,0.207]],"o":[[-1.198,-2.072],[-2.462,0],[-0.204,0.361],[0.361,0.204],[0.925,-1.638],[1.897,0],[0.207,0.359],[0.359,-0.207]],"v":[[5.848,8.225],[0,4.849],[-5.88,8.282],[-5.596,9.304],[-4.574,9.02],[0,6.349],[4.549,8.976],[5.574,9.25]],"c":true},"ix":2},"nm":"路径 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"合并路径 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.267,0.639,1,0.5,0.241,0.596,1,1,0.216,0.553,1],"ix":9}},"s":{"a":0,"k":[-3.812,-4.384],"ix":5},"e":{"a":0,"k":[6.345,8.129],"ix":6},"t":1,"nm":"color","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[300,300],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"Union","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":60,"st":0,"ct":1,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"icon","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[33,33,0],"ix":2,"l":2},"a":{"a":0,"k":[33,33,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[70,70,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":18,"s":[110,110,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[90,90,100]},{"t":32,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"w":66,"h":66,"ip":0,"op":60,"st":0,"bm":0}],"markers":[],"props":{}}
|
|
||||||
File diff suppressed because one or more lines are too long
@ -34,18 +34,18 @@ try {
|
|||||||
var script = document.createElement("script")
|
var script = document.createElement("script")
|
||||||
document.body.appendChild(script)
|
document.body.appendChild(script)
|
||||||
if (isDebug) {
|
if (isDebug) {
|
||||||
script.src = "https://dev-and-static.ghzs66.com/web/js/halo.js" + "?timestamp=" + Math.round(new Date().getTime() / 1000)
|
script.src = "https://resource.ghzs.com/js/halo_app_test.js" + "?timestamp=" + Math.round(new Date().getTime() / 1000)
|
||||||
} else {
|
} else {
|
||||||
script.src = "https://and-static.ghzs66.com/web/js/halo.js" + "?timestamp=" + Math.round(new Date().getTime() / 1000 / 1000)
|
script.src = "https://resource.ghzs.com/js/halo.js" + "?timestamp=" + Math.round(new Date().getTime() / 1000 / 1000)
|
||||||
}
|
}
|
||||||
|
|
||||||
var style = document.createElement("link")
|
var style = document.createElement("link")
|
||||||
style.rel = "stylesheet"
|
style.rel = "stylesheet"
|
||||||
style.type = "text/css"
|
style.type = "text/css"
|
||||||
if (isDebug) {
|
if (isDebug) {
|
||||||
style.href = "https://dev-and-static.ghzs66.com/web/css/halo.css" + "?timestamp=" + Math.round(new Date().getTime() / 1000)
|
style.href = "https://resource.ghzs.com/css/halo_app_test.css" + "?timestamp=" + Math.round(new Date().getTime() / 1000)
|
||||||
} else {
|
} else {
|
||||||
style.href = "https://and-static.ghzs66.com/web/css/halo.css" + "?timestamp=" + Math.round(new Date().getTime() / 1000 / 1000)
|
style.href = "https://resource.ghzs.com/css/halo.css" + "?timestamp=" + Math.round(new Date().getTime() / 1000 / 1000)
|
||||||
}
|
}
|
||||||
|
|
||||||
document.head.appendChild(style)
|
document.head.appendChild(style)
|
||||||
@ -205,17 +205,14 @@ RE.setOutdent = function() {
|
|||||||
|
|
||||||
RE.setJustifyLeft = function() {
|
RE.setJustifyLeft = function() {
|
||||||
document.execCommand('justifyLeft', false, null);
|
document.execCommand('justifyLeft', false, null);
|
||||||
RE.enabledEditingItems()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RE.setJustifyCenter = function() {
|
RE.setJustifyCenter = function() {
|
||||||
document.execCommand('justifyCenter', false, null);
|
document.execCommand('justifyCenter', false, null);
|
||||||
RE.enabledEditingItems()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RE.setJustifyRight = function() {
|
RE.setJustifyRight = function() {
|
||||||
document.execCommand('justifyRight', false, null);
|
document.execCommand('justifyRight', false, null);
|
||||||
RE.enabledEditingItems()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RE.setBlockquote = function() {
|
RE.setBlockquote = function() {
|
||||||
@ -230,16 +227,6 @@ RE.insertImage = function(url) {
|
|||||||
RE.insertHTML(html);
|
RE.insertHTML(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 设置分割线
|
|
||||||
RE.insertHorizontalRule = function() {
|
|
||||||
document.execCommand('insertHorizontalRule', false, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 设置编辑器默认换行符
|
|
||||||
RE.setDefaultParagraphSeparator = function(separator) {
|
|
||||||
document.execCommand('defaultParagraphSeparator', false, separator);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 替换成缩略图
|
// 替换成缩略图
|
||||||
RE.replaceTbImage = function(imgRuleFlag, gifRuleFlag) {
|
RE.replaceTbImage = function(imgRuleFlag, gifRuleFlag) {
|
||||||
var imgs = document.getElementsByTagName("img");
|
var imgs = document.getElementsByTagName("img");
|
||||||
@ -587,10 +574,6 @@ document.addEventListener("selectionchange", function(e) {
|
|||||||
RE.sendElementNameToNative()
|
RE.sendElementNameToNative()
|
||||||
});
|
});
|
||||||
|
|
||||||
document.addEventListener("selectionchange", function(e) {
|
|
||||||
RE.enabledEditingItems(e)
|
|
||||||
});
|
|
||||||
|
|
||||||
RE.recursion = function(dom) {
|
RE.recursion = function(dom) {
|
||||||
var parenDom = dom.parentElement
|
var parenDom = dom.parentElement
|
||||||
if (parenDom && parenDom instanceof Element &&
|
if (parenDom && parenDom instanceof Element &&
|
||||||
@ -633,6 +616,7 @@ RE.sendElementNameToNative = function() {
|
|||||||
// android function to open link
|
// android function to open link
|
||||||
function customLinkgo(self) {
|
function customLinkgo(self) {
|
||||||
var datas = self.dataset.datas
|
var datas = self.dataset.datas
|
||||||
|
// console.log(datas)
|
||||||
window.OnLinkClickListener.onClick(datas)
|
window.OnLinkClickListener.onClick(datas)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -30,6 +30,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#editor {
|
#editor {
|
||||||
|
display: table-cell;
|
||||||
outline: 0px solid transparent;
|
outline: 0px solid transparent;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
|
|||||||
BIN
app/src/main/assets/tab_mine.gif
Normal file
BIN
app/src/main/assets/tab_mine.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
@ -1,683 +0,0 @@
|
|||||||
package com.gh.ad
|
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
|
||||||
import android.app.Activity
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.SharedPreferences
|
|
||||||
import android.os.Message
|
|
||||||
import android.text.TextUtils
|
|
||||||
import android.view.View
|
|
||||||
import android.view.ViewGroup
|
|
||||||
import android.widget.FrameLayout
|
|
||||||
import android.widget.TextView
|
|
||||||
import androidx.appcompat.content.res.AppCompatResources
|
|
||||||
import androidx.fragment.app.Fragment
|
|
||||||
import com.alibaba.android.arouter.launcher.ARouter
|
|
||||||
import com.facebook.drawee.view.SimpleDraweeView
|
|
||||||
import com.gh.common.exposure.ExposureManager
|
|
||||||
import com.gh.common.util.DirectUtils.directToLinkPage
|
|
||||||
import com.gh.common.util.LogUtils
|
|
||||||
import com.gh.common.util.NewFlatLogUtils.logOpenScreenAdSkip
|
|
||||||
import com.gh.common.util.PackageUtils
|
|
||||||
import com.gh.gamecenter.BuildConfig
|
|
||||||
import com.gh.gamecenter.MainActivity
|
|
||||||
import com.gh.gamecenter.R
|
|
||||||
import com.gh.gamecenter.common.base.activity.BaseActivity
|
|
||||||
import com.gh.gamecenter.common.constant.Constants
|
|
||||||
import com.gh.gamecenter.common.constant.RouteConsts
|
|
||||||
import com.gh.gamecenter.common.exposure.ExposureSource
|
|
||||||
import com.gh.gamecenter.common.retrofit.BiResponse
|
|
||||||
import com.gh.gamecenter.common.utils.*
|
|
||||||
import com.gh.gamecenter.core.provider.IBeiziAdProvider
|
|
||||||
import com.gh.gamecenter.core.provider.ICsjAdProvider
|
|
||||||
import com.gh.gamecenter.core.utils.CurrentActivityHolder
|
|
||||||
import com.gh.gamecenter.core.utils.SPUtils
|
|
||||||
import com.gh.gamecenter.core.utils.TimeUtils.getToday
|
|
||||||
import com.gh.gamecenter.entity.AdConfig
|
|
||||||
import com.gh.gamecenter.entity.StartupAdEntity
|
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent.Companion.createEvent
|
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureType
|
|
||||||
import com.gh.gamecenter.retrofit.RetrofitManager
|
|
||||||
import com.halo.assistant.HaloApp
|
|
||||||
import io.reactivex.schedulers.Schedulers
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 广告实现代理类
|
|
||||||
*
|
|
||||||
* 由它来分发功能实现到具体的实现
|
|
||||||
*
|
|
||||||
* 以最复杂的开屏广告为例,有三种实现(1. 自有的广告实现 2. 穿山甲的开屏广告实现 3. Beizi 的开屏广告实现)
|
|
||||||
*
|
|
||||||
* 由于两个广告 SDK 有可能在一次启动中都被使用,所以会根据获取到的广告配置 config 来决定是否需要出是很好两个 SDK
|
|
||||||
*/
|
|
||||||
object AdDelegateHelper {
|
|
||||||
|
|
||||||
private var mCsjAdImpl: ICsjAdProvider? = null
|
|
||||||
private var mBeiziAdImpl: IBeiziAdProvider? = null
|
|
||||||
|
|
||||||
private val mAdConfigList: ArrayList<AdConfig> by lazy { arrayListOf() }
|
|
||||||
|
|
||||||
private var mSplashAd: AdConfig? = null
|
|
||||||
private var mDownloadManagerAd: AdConfig? = null
|
|
||||||
private val mGameSearchAdList: ArrayList<AdConfig> by lazy { arrayListOf() }
|
|
||||||
private var mVGameLaunchAd: AdConfig? = null
|
|
||||||
|
|
||||||
val vGameLaunchAd: AdConfig?
|
|
||||||
get() = mVGameLaunchAd
|
|
||||||
|
|
||||||
private const val AD_SDK_CSJ = "穿山甲"
|
|
||||||
private const val AD_SDK_BEIZI = "倍孜"
|
|
||||||
const val AD_TYPE_SDK = "third_party_ads" // 第三方 SDK 广告
|
|
||||||
const val AD_TYPE_OWNER = "owner_ads" // 自有广告
|
|
||||||
|
|
||||||
private const val KEY_CACHE_CONFIG = "cache_config" // 放在 SP 里的广告缓存(避免接口加载问题)
|
|
||||||
|
|
||||||
private val mAdConfigSp: SharedPreferences by lazy {
|
|
||||||
HaloApp.getInstance().getSharedPreferences("AdConfig", Context.MODE_PRIVATE)
|
|
||||||
}
|
|
||||||
|
|
||||||
var isShowingSplashAd = false // 是否正在显示开屏广告
|
|
||||||
var gameSearchKeyword = ""
|
|
||||||
|
|
||||||
fun initAdSdk(context: Context) {
|
|
||||||
// 初始化 Beizi
|
|
||||||
if (mBeiziAdImpl == null) {
|
|
||||||
mBeiziAdImpl =
|
|
||||||
ARouter.getInstance().build(RouteConsts.provider.beiziAd).navigation() as? IBeiziAdProvider
|
|
||||||
mBeiziAdImpl?.initSDK(context)
|
|
||||||
}
|
|
||||||
|
|
||||||
// 初始化穿山甲
|
|
||||||
if (mCsjAdImpl == null) {
|
|
||||||
mCsjAdImpl =
|
|
||||||
ARouter.getInstance().build(RouteConsts.provider.csjAd).navigation() as? ICsjAdProvider
|
|
||||||
val csjAppId = if (EnvHelper.isDevEnv) BuildConfig.DEV_CSJ_APPID else BuildConfig.CSJ_APPID
|
|
||||||
mCsjAdImpl?.initSDK(context, csjAppId, HaloApp.getInstance().oaid)
|
|
||||||
// 监听亮色/暗色模式切换
|
|
||||||
DarkModeUtils.registerModeChangeListener {
|
|
||||||
val topActivity = CurrentActivityHolder.getCurrentActivity() ?: return@registerModeChangeListener
|
|
||||||
updateThemeStatus(context, DarkModeUtils.isDarkModeOn(topActivity))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 请求接口获取广告相关配置
|
|
||||||
*/
|
|
||||||
@SuppressLint("CheckResult")
|
|
||||||
fun requestAdConfig(isFromRetry: Boolean, keyword: String = "", callback: (() -> Unit)? = null) {
|
|
||||||
// mAdConfigList 不为空不需要重试
|
|
||||||
if (isFromRetry && mAdConfigList.isNotEmpty()) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
val paramsMap = if (keyword.isNotEmpty()) mapOf("keyword" to keyword) else mapOf()
|
|
||||||
RetrofitManager.getInstance()
|
|
||||||
.newApi
|
|
||||||
.getAdConfig(paramsMap)
|
|
||||||
.subscribeOn(Schedulers.io())
|
|
||||||
.subscribe(object : BiResponse<List<AdConfig>>() {
|
|
||||||
override fun onSuccess(data: List<AdConfig>) {
|
|
||||||
gameSearchKeyword = keyword
|
|
||||||
handleAdConfig(data)
|
|
||||||
callback?.invoke()
|
|
||||||
|
|
||||||
// 缓存数据到 SP 供接口请求失败用
|
|
||||||
SPUtils.setString(mAdConfigSp, KEY_CACHE_CONFIG, data.toJson())
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onFailure(exception: Exception) {
|
|
||||||
super.onFailure(exception)
|
|
||||||
|
|
||||||
// 若接口请求失败时,从 SP 里获取上次缓存的数据
|
|
||||||
val cachedConfig: List<AdConfig>? = SPUtils.getString(mAdConfigSp, KEY_CACHE_CONFIG).toObject()
|
|
||||||
if (cachedConfig != null && mAdConfigList.isEmpty()) {
|
|
||||||
handleAdConfig(cachedConfig)
|
|
||||||
}
|
|
||||||
|
|
||||||
callback?.invoke()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取搜索页的广告列表
|
|
||||||
*/
|
|
||||||
fun getGameSearchAdList(): ArrayList<AdConfig> {
|
|
||||||
return mGameSearchAdList
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取下载管理页的广告
|
|
||||||
*/
|
|
||||||
fun getDownloadManagerAd(): AdConfig? {
|
|
||||||
return mDownloadManagerAd
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理广告配置
|
|
||||||
*/
|
|
||||||
fun handleAdConfig(configList: List<AdConfig>) {
|
|
||||||
mAdConfigList.clear()
|
|
||||||
mGameSearchAdList.clear()
|
|
||||||
mSplashAd = null
|
|
||||||
mDownloadManagerAd = null
|
|
||||||
mVGameLaunchAd = null
|
|
||||||
for (config in configList) {
|
|
||||||
mAdConfigList.add(config)
|
|
||||||
// 处理返回的数据
|
|
||||||
when (config.location) {
|
|
||||||
"halo_launch" -> {
|
|
||||||
config.ownerAd?.startAd?.let { it.id = config.ownerAd.id }
|
|
||||||
mSplashAd = config
|
|
||||||
}
|
|
||||||
|
|
||||||
"download_manager" -> mDownloadManagerAd = config
|
|
||||||
"game_search" -> config.let { mGameSearchAdList.add(it) }
|
|
||||||
"helper_launch" -> mVGameLaunchAd = config
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否需要显示开屏广告
|
|
||||||
* @param isHotLaunch 是否为热启动
|
|
||||||
*/
|
|
||||||
fun shouldShowStartUpAd(isHotLaunch: Boolean): Boolean {
|
|
||||||
return mSplashAd != null
|
|
||||||
&& !isShowingSplashAd
|
|
||||||
&& (!isHotLaunch || shouldShowStartUpAdWhenHotLaunch())
|
|
||||||
&& !isMatchAdFreeRule(mSplashAd)
|
|
||||||
&& isMatchStartUpAdDisplayRule()
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 热启动是否需要显示开屏广告
|
|
||||||
*/
|
|
||||||
private fun shouldShowStartUpAdWhenHotLaunch() =
|
|
||||||
mSplashAd?.displayRule?.hotStartSplashAd?.type == AD_TYPE_SDK && mSplashAd?.hotStartThirdPartyAd != null
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否需要显示下载管理广告
|
|
||||||
*/
|
|
||||||
fun shouldShowDownloadManagerAd(): Boolean {
|
|
||||||
return mDownloadManagerAd != null && !isMatchAdFreeRule(mDownloadManagerAd) && isMatchDownloadManagerAdDisplayRule()
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否需要显示游戏搜索广告
|
|
||||||
*/
|
|
||||||
fun shouldShowGameSearchAd(adConfig: AdConfig): Boolean {
|
|
||||||
return !isMatchAdFreeRule(adConfig) && isMatchGameSearchAdDisplayRule(adConfig)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否在免广告时长内
|
|
||||||
*/
|
|
||||||
private fun isMatchAdFreeRule(adConfig: AdConfig?): Boolean {
|
|
||||||
adConfig?.displayRule?.run {
|
|
||||||
if (adFreeDuration > 0) {
|
|
||||||
val ghInstalledDurationInHours = (System.currentTimeMillis() - PackageUtils.getInstalledTime(
|
|
||||||
HaloApp.getInstance(),
|
|
||||||
BuildConfig.APPLICATION_ID
|
|
||||||
)).toFloat() / 1000 / 3600
|
|
||||||
return ghInstalledDurationInHours < adFreeDuration
|
|
||||||
} else {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否大于开屏广告展示间隔时长
|
|
||||||
*/
|
|
||||||
private fun isMatchStartUpAdDisplayRule(): Boolean {
|
|
||||||
mSplashAd?.displayRule?.run {
|
|
||||||
if (adDisplayInterval > 0) {
|
|
||||||
val lastShowTime = SPUtils.getLong(Constants.SP_LAST_SPLASH_AD_SHOW_TIME, 0L)
|
|
||||||
val durationInMinutes = (System.currentTimeMillis() - lastShowTime).toFloat() / 1000 / 60
|
|
||||||
return durationInMinutes > adDisplayInterval
|
|
||||||
} else {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否大于广告管理展示间隔时长
|
|
||||||
*/
|
|
||||||
private fun isMatchDownloadManagerAdDisplayRule(): Boolean {
|
|
||||||
mDownloadManagerAd?.displayRule?.run {
|
|
||||||
if (adDisplayInterval > 0) {
|
|
||||||
val lastShowTime = SPUtils.getLong(Constants.SP_LAST_DOWNLOAD_MANAGER_AD_SHOW_TIME, 0L)
|
|
||||||
val durationInMinutes = (System.currentTimeMillis() - lastShowTime).toFloat() / 1000 / 60
|
|
||||||
return durationInMinutes > adDisplayInterval
|
|
||||||
} else {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否大于游戏搜索展示间隔时长
|
|
||||||
*/
|
|
||||||
private fun isMatchGameSearchAdDisplayRule(adConfig: AdConfig?): Boolean {
|
|
||||||
adConfig?.displayRule?.run {
|
|
||||||
if (adDisplayInterval > 0) {
|
|
||||||
val lastShowTime = SPUtils.getLong(Constants.SP_LAST_GAME_SEARCH_AD_SHOW_TIME + adConfig.position, 0L)
|
|
||||||
val durationInMinutes = (System.currentTimeMillis() - lastShowTime).toFloat() / 1000 / 60
|
|
||||||
return durationInMinutes > adDisplayInterval
|
|
||||||
} else {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新主题样式
|
|
||||||
*/
|
|
||||||
private fun updateThemeStatus(context: Context, isDarkMode: Boolean) {
|
|
||||||
mCsjAdImpl?.updateThemeStatus(context, isDarkMode)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 请求开屏广告
|
|
||||||
*/
|
|
||||||
@JvmStatic
|
|
||||||
fun requestSplashAd(
|
|
||||||
activity: Activity,
|
|
||||||
adViewWidthInPx: Int,
|
|
||||||
adViewHeightInPx: Int,
|
|
||||||
adViewWidthInDp: Float,
|
|
||||||
adViewHeightInDp: Float,
|
|
||||||
startAdContainer: ViewGroup,
|
|
||||||
sdkStartAdContainer: ViewGroup,
|
|
||||||
adsViewGroup: FrameLayout,
|
|
||||||
handler: BaseActivity.BaseHandler,
|
|
||||||
isHotLaunch: Boolean,
|
|
||||||
hideAction: () -> Unit
|
|
||||||
) {
|
|
||||||
val hideCallback = {
|
|
||||||
isShowingSplashAd = false
|
|
||||||
hideAction.invoke()
|
|
||||||
}
|
|
||||||
if (mSplashAd != null) {
|
|
||||||
when (if (isHotLaunch) mSplashAd!!.displayRule.hotStartSplashAd?.type else mSplashAd!!.displayRule.adSource) {
|
|
||||||
AD_TYPE_SDK -> {
|
|
||||||
isShowingSplashAd = true
|
|
||||||
requestThirdPartySplashAd(
|
|
||||||
activity,
|
|
||||||
adViewWidthInPx,
|
|
||||||
adViewHeightInPx,
|
|
||||||
adViewWidthInDp,
|
|
||||||
adViewHeightInDp,
|
|
||||||
startAdContainer,
|
|
||||||
sdkStartAdContainer,
|
|
||||||
adsViewGroup,
|
|
||||||
handler,
|
|
||||||
isHotLaunch,
|
|
||||||
hideCallback
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
AD_TYPE_OWNER -> {
|
|
||||||
isShowingSplashAd = true
|
|
||||||
requestStandardSplashAd(
|
|
||||||
activity,
|
|
||||||
adViewWidthInPx,
|
|
||||||
adViewHeightInPx,
|
|
||||||
adViewWidthInDp,
|
|
||||||
adViewHeightInDp,
|
|
||||||
startAdContainer,
|
|
||||||
sdkStartAdContainer,
|
|
||||||
adsViewGroup,
|
|
||||||
handler,
|
|
||||||
isHotLaunch,
|
|
||||||
hideCallback
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
hideCallback.invoke()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取第三方开屏广告
|
|
||||||
*/
|
|
||||||
private fun requestThirdPartySplashAd(
|
|
||||||
activity: Activity,
|
|
||||||
adViewWidthInPx: Int,
|
|
||||||
adViewHeightInPx: Int,
|
|
||||||
adViewWidthInDp: Float,
|
|
||||||
adViewHeightInDp: Float,
|
|
||||||
startAdContainer: ViewGroup,
|
|
||||||
sdkStartAdContainer: ViewGroup,
|
|
||||||
adsViewGroup: FrameLayout,
|
|
||||||
handler: BaseActivity.BaseHandler,
|
|
||||||
isHotLaunch: Boolean,
|
|
||||||
hideCallback: () -> Unit
|
|
||||||
) {
|
|
||||||
// 第三方开屏广告回调,失败时根据接口配置选项决定是否显示自有开屏广告
|
|
||||||
val sdkSplashCallback: (isSuccess: Boolean) -> Unit = { isSuccess ->
|
|
||||||
if (isSuccess) {
|
|
||||||
hideCallback.invoke()
|
|
||||||
SPUtils.setLong(Constants.SP_LAST_SPLASH_AD_SHOW_TIME, System.currentTimeMillis())
|
|
||||||
} else {
|
|
||||||
if (mSplashAd?.displayRule?.adSource == AD_TYPE_SDK && mSplashAd?.displayRule?.onFailedAction == "show" && !isHotLaunch) {
|
|
||||||
sdkStartAdContainer.visibility = View.GONE
|
|
||||||
requestStandardSplashAd(
|
|
||||||
activity,
|
|
||||||
adViewWidthInPx,
|
|
||||||
adViewHeightInPx,
|
|
||||||
adViewWidthInDp,
|
|
||||||
adViewHeightInDp,
|
|
||||||
startAdContainer,
|
|
||||||
sdkStartAdContainer,
|
|
||||||
adsViewGroup,
|
|
||||||
handler,
|
|
||||||
isHotLaunch,
|
|
||||||
hideCallback
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
hideCallback.invoke()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val thirdPartyAd = if (isHotLaunch) mSplashAd?.hotStartThirdPartyAd else mSplashAd?.thirdPartyAd
|
|
||||||
|
|
||||||
// 第三方广告的数据为空,按加载失败处理
|
|
||||||
if (mSplashAd == null || thirdPartyAd == null) {
|
|
||||||
sdkSplashCallback.invoke(false)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
val timeout = if (isHotLaunch) {
|
|
||||||
((mSplashAd?.displayRule?.hotStartSplashAd?.timeout ?: 3.5F) * 1000).toInt()
|
|
||||||
} else {
|
|
||||||
((mSplashAd?.displayRule?.timeout ?: 3.5F) * 1000).toInt()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (thirdPartyAd.sourceName == AD_SDK_BEIZI) {
|
|
||||||
sdkStartAdContainer.visibility = View.VISIBLE
|
|
||||||
requestBeiziSplashAd(sdkStartAdContainer, adsViewGroup, adViewWidthInPx, adViewHeightInPx, timeout.toLong(), sdkSplashCallback)
|
|
||||||
} else if (thirdPartyAd.sourceName == AD_SDK_CSJ) {
|
|
||||||
sdkStartAdContainer.visibility = View.VISIBLE
|
|
||||||
requestCsjSplashAd(
|
|
||||||
activity,
|
|
||||||
thirdPartyAd.slotId,
|
|
||||||
adViewWidthInPx,
|
|
||||||
adViewHeightInPx,
|
|
||||||
adViewWidthInDp,
|
|
||||||
adViewHeightInDp,
|
|
||||||
sdkStartAdContainer,
|
|
||||||
timeout,
|
|
||||||
sdkSplashCallback
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取穿山甲的开屏广告
|
|
||||||
*/
|
|
||||||
private fun requestCsjSplashAd(
|
|
||||||
activity: Activity,
|
|
||||||
slotId: String,
|
|
||||||
adViewWidthInPx: Int,
|
|
||||||
adViewHeightInPx: Int,
|
|
||||||
adViewWidthInDp: Float,
|
|
||||||
adViewHeightInDp: Float,
|
|
||||||
startAdContainer: ViewGroup,
|
|
||||||
timeout: Int,
|
|
||||||
callback: (isSuccess: Boolean) -> Unit,
|
|
||||||
) {
|
|
||||||
if (mCsjAdImpl == null) {
|
|
||||||
callback.invoke(false)
|
|
||||||
} else {
|
|
||||||
mCsjAdImpl?.requestSplashAd(
|
|
||||||
activity,
|
|
||||||
slotId,
|
|
||||||
adViewWidthInPx,
|
|
||||||
adViewHeightInPx,
|
|
||||||
adViewWidthInDp,
|
|
||||||
adViewHeightInDp,
|
|
||||||
startAdContainer,
|
|
||||||
timeout,
|
|
||||||
callback,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取 Beizi 的开屏广告
|
|
||||||
*/
|
|
||||||
private fun requestBeiziSplashAd(
|
|
||||||
startAdContainer: View,
|
|
||||||
adsFl: FrameLayout,
|
|
||||||
adViewWidthInPx: Int,
|
|
||||||
adViewHeightInPx: Int,
|
|
||||||
timeout: Long,
|
|
||||||
callback: (isSuccess: Boolean) -> Unit,
|
|
||||||
) {
|
|
||||||
if (mBeiziAdImpl == null) {
|
|
||||||
callback.invoke(false)
|
|
||||||
} else {
|
|
||||||
mBeiziAdImpl?.requestSplashAd(startAdContainer, adsFl, adViewWidthInPx, adViewHeightInPx, timeout, callback)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 显示自有的开屏广告
|
|
||||||
*/
|
|
||||||
private fun requestStandardSplashAd(
|
|
||||||
activity: Activity,
|
|
||||||
adViewWidthInPx: Int,
|
|
||||||
adViewHeightInPx: Int,
|
|
||||||
adViewWidthInDp: Float,
|
|
||||||
adViewHeightInDp: Float,
|
|
||||||
startAdContainer: ViewGroup,
|
|
||||||
sdkStartAdContainer: ViewGroup,
|
|
||||||
adsViewGroup: FrameLayout,
|
|
||||||
handler: BaseActivity.BaseHandler,
|
|
||||||
isHotLaunch: Boolean,
|
|
||||||
hideCallback: () -> Unit
|
|
||||||
) {
|
|
||||||
val splashAd = mSplashAd?.ownerAd?.startAd
|
|
||||||
val onEmptyCallback = {
|
|
||||||
if (mSplashAd?.displayRule?.adSource == AD_TYPE_OWNER && mSplashAd?.displayRule?.onFailedAction == "show" && mSplashAd?.thirdPartyAd != null) {
|
|
||||||
// 自有广告为空时,显示第三方广告
|
|
||||||
requestThirdPartySplashAd(
|
|
||||||
activity,
|
|
||||||
adViewWidthInPx,
|
|
||||||
adViewHeightInPx,
|
|
||||||
adViewWidthInDp,
|
|
||||||
adViewHeightInDp,
|
|
||||||
startAdContainer,
|
|
||||||
sdkStartAdContainer,
|
|
||||||
adsViewGroup,
|
|
||||||
handler,
|
|
||||||
isHotLaunch,
|
|
||||||
hideCallback
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
hideCallback.invoke()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (splashAd == null) {
|
|
||||||
onEmptyCallback.invoke()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!TextUtils.isEmpty(splashAd.img)) {
|
|
||||||
val showedTodayTimestamp = SPUtils.getString(Constants.SP_STARTUP_AD_TIMESTAMP, "") ?: ""
|
|
||||||
when (splashAd.rule) {
|
|
||||||
"each" -> showStandardSplashAd(splashAd, startAdContainer, handler, hideCallback)
|
|
||||||
"once" -> if (TextUtils.isEmpty(showedTodayTimestamp)
|
|
||||||
|| !showedTodayTimestamp.contains(splashAd.id)
|
|
||||||
) {
|
|
||||||
showStandardSplashAd(splashAd, startAdContainer, handler, hideCallback)
|
|
||||||
} else {
|
|
||||||
onEmptyCallback.invoke()
|
|
||||||
}
|
|
||||||
|
|
||||||
"everyday" -> {
|
|
||||||
val today = getToday()
|
|
||||||
if (TextUtils.isEmpty(showedTodayTimestamp)
|
|
||||||
|| !showedTodayTimestamp.contains(today)
|
|
||||||
|| !showedTodayTimestamp.contains(splashAd.id)
|
|
||||||
) {
|
|
||||||
showStandardSplashAd(splashAd, startAdContainer, handler, hideCallback)
|
|
||||||
} else {
|
|
||||||
onEmptyCallback.invoke()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
else -> hideCallback.invoke()
|
|
||||||
}
|
|
||||||
SPUtils.setString(Constants.SP_STARTUP_AD_TIMESTAMP, splashAd.id + getToday())
|
|
||||||
} else {
|
|
||||||
hideCallback.invoke()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun showStandardSplashAd(
|
|
||||||
ad: StartupAdEntity,
|
|
||||||
startAdContainer: ViewGroup,
|
|
||||||
handler: BaseActivity.BaseHandler,
|
|
||||||
hideCallback: () -> Unit
|
|
||||||
) {
|
|
||||||
val jumpBtn: View = startAdContainer.findViewById(R.id.jumpBtn)
|
|
||||||
val jumpDetailBtn: TextView = startAdContainer.findViewById(R.id.jumpDetailBtn)
|
|
||||||
val adImage: SimpleDraweeView = startAdContainer.findViewById(R.id.adImage)
|
|
||||||
val icpContainer: View? = startAdContainer.findViewById(R.id.startAdIcpContainer)
|
|
||||||
startAdContainer.visibility = View.VISIBLE
|
|
||||||
icpContainer?.visibility = View.VISIBLE
|
|
||||||
jumpDetailBtn.text = ad.desc
|
|
||||||
jumpDetailBtn.setDrawableEnd(
|
|
||||||
AppCompatResources.getDrawable(
|
|
||||||
startAdContainer.context,
|
|
||||||
R.drawable.ic_startup_ad_arrow
|
|
||||||
), null, null
|
|
||||||
)
|
|
||||||
ImageUtils.display(adImage, ad.img)
|
|
||||||
startAdContainer.setOnClickListener {
|
|
||||||
// 拦截点击事件传递
|
|
||||||
}
|
|
||||||
jumpBtn.setOnClickListener {
|
|
||||||
handler.removeMessages(MainActivity.COUNTDOWN_AD)
|
|
||||||
hideCallback.invoke()
|
|
||||||
val linkEntity = ad.jump
|
|
||||||
logOpenScreenAdSkip(
|
|
||||||
ad.id,
|
|
||||||
(if (linkEntity.text != null) linkEntity.text else "")!!,
|
|
||||||
(if (linkEntity.type != null) linkEntity.type else "")!!,
|
|
||||||
(if (linkEntity.link != null) linkEntity.link else "")!!
|
|
||||||
)
|
|
||||||
SensorsBridge.trackEvent(
|
|
||||||
"SplashAdOwnSkip",
|
|
||||||
"splash_ad_id",
|
|
||||||
ad.id,
|
|
||||||
"link_type",
|
|
||||||
linkEntity.type ?: "",
|
|
||||||
"link_id",
|
|
||||||
linkEntity.link ?: "",
|
|
||||||
"link_text",
|
|
||||||
linkEntity.text ?: ""
|
|
||||||
)
|
|
||||||
}
|
|
||||||
val sources: MutableList<ExposureSource> = ArrayList()
|
|
||||||
sources.add(ExposureSource("开屏广告", ad.id))
|
|
||||||
val event = createEvent(null, sources, null, ExposureType.EXPOSURE)
|
|
||||||
ExposureManager.log(event)
|
|
||||||
if (ad.button) {
|
|
||||||
jumpDetailBtn.setOnClickListener { v: View ->
|
|
||||||
val linkEntity = ad.jump
|
|
||||||
directToLinkPage(v.context, linkEntity, "(启动广告)", "", event)
|
|
||||||
SensorsBridge.trackEvent(
|
|
||||||
"SplashAdOwnClick",
|
|
||||||
"splash_ad_id",
|
|
||||||
ad.id,
|
|
||||||
"link_type",
|
|
||||||
linkEntity.type ?: "",
|
|
||||||
"link_id",
|
|
||||||
linkEntity.link ?: "",
|
|
||||||
"link_text",
|
|
||||||
linkEntity.text ?: ""
|
|
||||||
)
|
|
||||||
v.postDelayed({
|
|
||||||
handler.removeMessages(MainActivity.COUNTDOWN_AD)
|
|
||||||
hideCallback.invoke()
|
|
||||||
}, 1000)
|
|
||||||
}
|
|
||||||
jumpDetailBtn.visibility = View.VISIBLE
|
|
||||||
LogUtils.logStartAd("watch_start_ads", ad)
|
|
||||||
} else {
|
|
||||||
LogUtils.logStartAd("start_ads", ad)
|
|
||||||
}
|
|
||||||
SPUtils.setLong(Constants.SP_LAST_SPLASH_AD_SHOW_TIME, System.currentTimeMillis())
|
|
||||||
val msg = Message.obtain()
|
|
||||||
msg.what = MainActivity.COUNTDOWN_AD
|
|
||||||
msg.obj = ad
|
|
||||||
handler.sendMessageDelayed(msg, 1000)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取第三方信息流广告
|
|
||||||
*/
|
|
||||||
fun requestThirdPartyFlowAd(
|
|
||||||
fragment: Fragment,
|
|
||||||
slotId: String,
|
|
||||||
adContainerView: ViewGroup,
|
|
||||||
expressViewWidth: Float,
|
|
||||||
callback: (isSuccess: Boolean) -> Unit,
|
|
||||||
) {
|
|
||||||
mCsjAdImpl?.requestFlowAd(fragment, adContainerView, slotId, expressViewWidth, callback)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取第三方 Banner 广告
|
|
||||||
*/
|
|
||||||
fun requestThirdPartyBannerAd(
|
|
||||||
fragment: Fragment,
|
|
||||||
containerView: ViewGroup,
|
|
||||||
ad: AdConfig.ThirdPartyAd,
|
|
||||||
expressViewWidthInDp: Float,
|
|
||||||
callback: (isSuccess: Boolean) -> Unit
|
|
||||||
) {
|
|
||||||
|
|
||||||
val slotId = ad.slotId
|
|
||||||
val displayRatio: Float = if (ad.displaySize.isEmpty()) {
|
|
||||||
2F
|
|
||||||
} else {
|
|
||||||
val array = ad.displaySize.split("*")
|
|
||||||
if (array.size == 2) {
|
|
||||||
array[0].toFloat() / array[1].toFloat()
|
|
||||||
} else {
|
|
||||||
2F
|
|
||||||
}
|
|
||||||
}
|
|
||||||
val expressViewHeightInDp = expressViewWidthInDp / displayRatio
|
|
||||||
|
|
||||||
mCsjAdImpl?.requestBannerAd(
|
|
||||||
fragment,
|
|
||||||
containerView,
|
|
||||||
slotId,
|
|
||||||
expressViewWidthInDp,
|
|
||||||
expressViewHeightInDp,
|
|
||||||
callback
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 取消开屏广告
|
|
||||||
*/
|
|
||||||
fun cancelSplashAd(context: Context) {
|
|
||||||
mBeiziAdImpl?.cancelSplashAd(context)
|
|
||||||
mCsjAdImpl?.cancelSplashAd(context)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -6,7 +6,6 @@ import android.app.Activity
|
|||||||
import android.content.ClipboardManager
|
import android.content.ClipboardManager
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.graphics.Color
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.text.TextUtils
|
import android.text.TextUtils
|
||||||
import android.view.View
|
import android.view.View
|
||||||
@ -26,10 +25,9 @@ import com.gh.gamecenter.core.AppExecutor
|
|||||||
import com.gh.gamecenter.core.runOnIoThread
|
import com.gh.gamecenter.core.runOnIoThread
|
||||||
import com.gh.gamecenter.core.utils.*
|
import com.gh.gamecenter.core.utils.*
|
||||||
import com.gh.gamecenter.entity.*
|
import com.gh.gamecenter.entity.*
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
|
||||||
import com.gh.gamecenter.qa.editor.*
|
import com.gh.gamecenter.qa.editor.*
|
||||||
import com.gh.gamecenter.feature.entity.AnswerEntity
|
import com.gh.gamecenter.qa.entity.AnswerEntity
|
||||||
import com.gh.gamecenter.feature.entity.ArticleEntity
|
import com.gh.gamecenter.qa.entity.ArticleEntity
|
||||||
import com.gh.gamecenter.qa.entity.EditorInsertEntity
|
import com.gh.gamecenter.qa.entity.EditorInsertEntity
|
||||||
import com.gh.gamecenter.video.poster.PosterEditActivity
|
import com.gh.gamecenter.video.poster.PosterEditActivity
|
||||||
import com.gh.gamecenter.video.upload.UploadManager
|
import com.gh.gamecenter.video.upload.UploadManager
|
||||||
@ -44,7 +42,7 @@ import org.json.JSONObject
|
|||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
// TODO: 移动到module_bbs模块
|
// TODO: 移动到module_bbs模块
|
||||||
abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor() : ToolBarActivity(),
|
abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> : ToolBarActivity(),
|
||||||
KeyboardHeightObserver, UploadVideoListener {
|
KeyboardHeightObserver, UploadVideoListener {
|
||||||
|
|
||||||
lateinit var mRichEditor: RichEditor
|
lateinit var mRichEditor: RichEditor
|
||||||
@ -57,16 +55,11 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
private lateinit var mEditorFontItalic: CheckableImageView
|
private lateinit var mEditorFontItalic: CheckableImageView
|
||||||
private lateinit var mEditorFontStrikeThrough: CheckableImageView
|
private lateinit var mEditorFontStrikeThrough: CheckableImageView
|
||||||
private lateinit var mEditorFontUnderline: CheckableImageView
|
private lateinit var mEditorFontUnderline: CheckableImageView
|
||||||
private lateinit var mEditorParagraphDivider: CheckableImageView
|
|
||||||
private lateinit var mEditorParagraphH1: CheckableImageView
|
private lateinit var mEditorParagraphH1: CheckableImageView
|
||||||
private lateinit var mEditorParagraphH2: CheckableImageView
|
private lateinit var mEditorParagraphH2: CheckableImageView
|
||||||
private lateinit var mEditorParagraphH3: CheckableImageView
|
private lateinit var mEditorParagraphH3: CheckableImageView
|
||||||
private lateinit var mEditorParagraphH4: CheckableImageView
|
private lateinit var mEditorParagraphH4: CheckableImageView
|
||||||
private lateinit var mEditorParagraphQuote: CheckableImageView
|
private lateinit var mEditorParagraphQuote: CheckableImageView
|
||||||
private lateinit var mEditorAlignLeft: CheckableImageView
|
|
||||||
private lateinit var mEditorAlignCenter: CheckableImageView
|
|
||||||
private lateinit var mEditorAlignRight: CheckableImageView
|
|
||||||
private lateinit var mEditorAlignContainer: View
|
|
||||||
private lateinit var mEditorFontContainer: View
|
private lateinit var mEditorFontContainer: View
|
||||||
private lateinit var mEditorParagraphContainer: View
|
private lateinit var mEditorParagraphContainer: View
|
||||||
private lateinit var mEditorLinkContainer: View
|
private lateinit var mEditorLinkContainer: View
|
||||||
@ -102,7 +95,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
mRichEditor.insertCustomStyleLink(insertData)
|
mRichEditor.insertCustomStyleLink(insertData)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
INSERT_ARTICLE_CODE -> {
|
INSERT_ARTICLE_CODE -> {
|
||||||
val article =
|
val article =
|
||||||
data?.getParcelableExtra<ArticleEntity>(ArticleEntity::class.java.simpleName)
|
data?.getParcelableExtra<ArticleEntity>(ArticleEntity::class.java.simpleName)
|
||||||
@ -112,7 +104,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
mRichEditor.insertCustomStyleLink(insertData)
|
mRichEditor.insertCustomStyleLink(insertData)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
INSERT_GAME_CODE -> {
|
INSERT_GAME_CODE -> {
|
||||||
val game = data?.getParcelableExtra<GameEntity>(GameEntity::class.java.simpleName)
|
val game = data?.getParcelableExtra<GameEntity>(GameEntity::class.java.simpleName)
|
||||||
if (game != null) {
|
if (game != null) {
|
||||||
@ -121,7 +112,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
mRichEditor.insertCustomStyleLink(insertData)
|
mRichEditor.insertCustomStyleLink(insertData)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
INSERT_GAME_COLLECTION_CODE -> {
|
INSERT_GAME_COLLECTION_CODE -> {
|
||||||
val gameCollectionEntity =
|
val gameCollectionEntity =
|
||||||
data?.getParcelableExtra<GamesCollectionEntity>(GamesCollectionEntity::class.java.simpleName)
|
data?.getParcelableExtra<GamesCollectionEntity>(GamesCollectionEntity::class.java.simpleName)
|
||||||
@ -131,11 +121,9 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
mRichEditor.insertCustomStyleLink(insertData)
|
mRichEditor.insertCustomStyleLink(insertData)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
REQUEST_CODE_IMAGE -> {
|
REQUEST_CODE_IMAGE -> {
|
||||||
if (data != null) mViewModel.uploadPic(data)
|
if (data != null) mViewModel.uploadPic(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
INSERT_MEDIA_VIDEO_CODE -> {
|
INSERT_MEDIA_VIDEO_CODE -> {
|
||||||
val localVideoList =
|
val localVideoList =
|
||||||
data?.getParcelableArrayListExtra<LocalVideoEntity>(LocalVideoEntity::class.java.name)
|
data?.getParcelableArrayListExtra<LocalVideoEntity>(LocalVideoEntity::class.java.name)
|
||||||
@ -145,14 +133,12 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
uploadVideo(localVideoList)
|
uploadVideo(localVideoList)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
REQUEST_CODE_IMAGE_CROP -> {
|
REQUEST_CODE_IMAGE_CROP -> {
|
||||||
val imagePath = data?.getStringExtra(CropImageActivity.RESULT_CLIP_PATH)
|
val imagePath = data?.getStringExtra(CropImageActivity.RESULT_CLIP_PATH)
|
||||||
if (!imagePath.isNullOrEmpty()) {
|
if (!imagePath.isNullOrEmpty()) {
|
||||||
mViewModel.uploadPoster(imagePath)
|
mViewModel.uploadPoster(imagePath)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
INSERT_VIDEO_CODE -> {
|
INSERT_VIDEO_CODE -> {
|
||||||
val videoEntity = data?.getParcelableExtra<MyVideoEntity>(MyVideoEntity::class.java.simpleName)
|
val videoEntity = data?.getParcelableExtra<MyVideoEntity>(MyVideoEntity::class.java.simpleName)
|
||||||
if (videoEntity != null) {
|
if (videoEntity != null) {
|
||||||
@ -206,12 +192,7 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
mEditorParagraphH2 = findViewById(R.id.editor_paragraph_h2)
|
mEditorParagraphH2 = findViewById(R.id.editor_paragraph_h2)
|
||||||
mEditorParagraphH3 = findViewById(R.id.editor_paragraph_h3)
|
mEditorParagraphH3 = findViewById(R.id.editor_paragraph_h3)
|
||||||
mEditorParagraphH4 = findViewById(R.id.editor_paragraph_h4)
|
mEditorParagraphH4 = findViewById(R.id.editor_paragraph_h4)
|
||||||
mEditorParagraphDivider = findViewById(R.id.editor_paragraph_divider)
|
|
||||||
mEditorParagraphQuote = findViewById(R.id.editor_paragraph_quote)
|
mEditorParagraphQuote = findViewById(R.id.editor_paragraph_quote)
|
||||||
mEditorAlignLeft = findViewById(R.id.editor_align_left)
|
|
||||||
mEditorAlignCenter = findViewById(R.id.editor_align_center)
|
|
||||||
mEditorAlignRight = findViewById(R.id.editor_align_right)
|
|
||||||
mEditorAlignContainer = findViewById(R.id.editor_align_container)
|
|
||||||
mEditorFontContainer = findViewById(R.id.editor_font_container)
|
mEditorFontContainer = findViewById(R.id.editor_font_container)
|
||||||
mEditorParagraphContainer = findViewById(R.id.editor_paragraph_container)
|
mEditorParagraphContainer = findViewById(R.id.editor_paragraph_container)
|
||||||
mEditorLinkContainer = findViewById(R.id.editor_link_container)
|
mEditorLinkContainer = findViewById(R.id.editor_link_container)
|
||||||
@ -233,8 +214,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
mKeyboardHeightProvider = KeyboardHeightProvider(this)
|
mKeyboardHeightProvider = KeyboardHeightProvider(this)
|
||||||
mRichEditor.post { mKeyboardHeightProvider?.start() }
|
mRichEditor.post { mKeyboardHeightProvider?.start() }
|
||||||
mRichEditor.enableForceDark(DarkModeUtils.isDarkModeOn(this))
|
mRichEditor.enableForceDark(DarkModeUtils.isDarkModeOn(this))
|
||||||
mRichEditor.setEditorBackgroundColor(R.color.ui_surface.toColor(this))
|
|
||||||
mRichEditor.setEditorFontColor(if (mIsDarkModeOn) Color.parseColor("#C2C2C2") else Color.parseColor("#4A4A4A"))
|
|
||||||
// 防止个别手机在Js里无法获取粘贴内容
|
// 防止个别手机在Js里无法获取粘贴内容
|
||||||
mRichEditor.addJavascriptInterface(OnPasteListener(), "onPasteListener")
|
mRichEditor.addJavascriptInterface(OnPasteListener(), "onPasteListener")
|
||||||
mRichEditor.addJavascriptInterface(OnCursorChangeListener(), "OnCursorChangeListener")
|
mRichEditor.addJavascriptInterface(OnCursorChangeListener(), "OnCursorChangeListener")
|
||||||
@ -258,13 +237,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
mRichEditor.hasFocus()
|
mRichEditor.hasFocus()
|
||||||
} else false
|
} else false
|
||||||
}
|
}
|
||||||
|
|
||||||
mRichEditor.setOnDecorationChangeListener { _, types ->
|
|
||||||
mEditorAlignLeft.isChecked = types.contains(RichEditor.Type.JUSTIFYLEFT)
|
|
||||||
mEditorAlignCenter.isChecked = types.contains(RichEditor.Type.JUSTIFYCENTER)
|
|
||||||
mEditorAlignRight.isChecked = types.contains(RichEditor.Type.JUSTIFYRIGHT)
|
|
||||||
}
|
|
||||||
|
|
||||||
mOriginalCb.setOnCheckedChangeListener { _, isChecked ->
|
mOriginalCb.setOnCheckedChangeListener { _, isChecked ->
|
||||||
if (isChecked) {
|
if (isChecked) {
|
||||||
mOriginalTipsContainer.alpha = 0f
|
mOriginalTipsContainer.alpha = 0f
|
||||||
@ -349,9 +321,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
MtaHelper.onEvent(mtaEventName(), "文字样式", "文字样式-下滑线")
|
MtaHelper.onEvent(mtaEventName(), "文字样式", "文字样式-下滑线")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mEditorParagraphDivider.setOnClickListener {
|
|
||||||
mRichEditor.insertDivider()
|
|
||||||
}
|
|
||||||
mEditorParagraphH1.setOnClickListener {
|
mEditorParagraphH1.setOnClickListener {
|
||||||
if (mEditorParagraphH1.isChecked) {
|
if (mEditorParagraphH1.isChecked) {
|
||||||
mRichEditor.formatBlock()
|
mRichEditor.formatBlock()
|
||||||
@ -397,27 +366,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
}
|
}
|
||||||
mEditorParagraphQuote.isChecked = !mEditorParagraphQuote.isChecked
|
mEditorParagraphQuote.isChecked = !mEditorParagraphQuote.isChecked
|
||||||
}
|
}
|
||||||
mEditorAlignLeft.setOnClickListener {
|
|
||||||
if (!mEditorAlignLeft.isChecked) {
|
|
||||||
mRichEditor.setAlignLeft()
|
|
||||||
MtaHelper.onEvent(mtaEventName(), "文本对齐选项", "文本对齐选项-靠左")
|
|
||||||
mEditorAlignLeft.isChecked = !mEditorAlignLeft.isChecked
|
|
||||||
}
|
|
||||||
}
|
|
||||||
mEditorAlignCenter.setOnClickListener {
|
|
||||||
if (!mEditorAlignCenter.isChecked) {
|
|
||||||
mRichEditor.setAlignCenter()
|
|
||||||
MtaHelper.onEvent(mtaEventName(), "文本对齐选项", "文本对齐选项-靠中")
|
|
||||||
mEditorAlignCenter.isChecked = !mEditorAlignCenter.isChecked
|
|
||||||
}
|
|
||||||
}
|
|
||||||
mEditorAlignRight.setOnClickListener {
|
|
||||||
if (!mEditorAlignRight.isChecked) {
|
|
||||||
mRichEditor.setAlignRight()
|
|
||||||
MtaHelper.onEvent(mtaEventName(), "文本对齐选项", "文本对齐选项-靠右")
|
|
||||||
mEditorAlignRight.isChecked = !mEditorAlignRight.isChecked
|
|
||||||
}
|
|
||||||
}
|
|
||||||
findViewById<View>(R.id.editor_link_answer).setOnClickListener {
|
findViewById<View>(R.id.editor_link_answer).setOnClickListener {
|
||||||
MtaHelper.onEvent(mtaEventName(), "插入链接", "插入链接-回答")
|
MtaHelper.onEvent(mtaEventName(), "插入链接", "插入链接-回答")
|
||||||
startActivityForResult(
|
startActivityForResult(
|
||||||
@ -497,22 +445,25 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
PermissionHelper.checkStoragePermissionBeforeAction(this) {
|
PermissionHelper.checkStoragePermissionBeforeAction(this,
|
||||||
val maxChooseCount = if (videoCount + 3 <= MAX_MEDIA_COUNT) 3 else MAX_MEDIA_COUNT - videoCount
|
object : EmptyCallback {
|
||||||
startActivityForResult(
|
override fun onCallback() {
|
||||||
LocalMediaActivity.getIntent(
|
val maxChooseCount = if (videoCount + 3 <= MAX_MEDIA_COUNT) 3 else MAX_MEDIA_COUNT - videoCount
|
||||||
this@BaseRichEditorActivity,
|
startActivityForResult(
|
||||||
LocalMediaActivity.ChooseType.VIDEO,
|
LocalMediaActivity.getIntent(
|
||||||
maxChooseCount,
|
this@BaseRichEditorActivity,
|
||||||
if (mtaEventName() == "提问帖") "发提问帖" else "发帖子"
|
LocalMediaActivity.ChooseType.VIDEO,
|
||||||
), INSERT_MEDIA_VIDEO_CODE
|
maxChooseCount,
|
||||||
)
|
if (mtaEventName() == "提问帖") "发提问帖" else "发帖子"
|
||||||
NewLogUtils.logChooseMedia(
|
), INSERT_MEDIA_VIDEO_CODE
|
||||||
"view_media",
|
)
|
||||||
if (mtaEventName() == "提问帖") "提问帖" else "帖子",
|
NewLogUtils.logChooseMedia(
|
||||||
"视频"
|
"view_media",
|
||||||
)
|
if (mtaEventName() == "提问帖") "提问帖" else "帖子",
|
||||||
}
|
"视频"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
})
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
toast(R.string.media_image_hint)
|
toast(R.string.media_image_hint)
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
@ -522,21 +473,23 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
private fun chooseImage() {
|
private fun chooseImage() {
|
||||||
MtaHelper.onEvent(mtaEventName(), "插入图片", "插入图片")
|
MtaHelper.onEvent(mtaEventName(), "插入图片", "插入图片")
|
||||||
val imageCount = mViewModel.quoteCountEntity.imageCount
|
val imageCount = mViewModel.quoteCountEntity.imageCount
|
||||||
if (imageCount >= MAX_IMAGE_COUNT) {
|
if (imageCount >= MAX_MEDIA_COUNT) {
|
||||||
toast(R.string.answer_edit_max_img_hint)
|
toast(R.string.answer_edit_max_img_hint)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
PermissionHelper.checkStoragePermissionBeforeAction(this) {
|
PermissionHelper.checkStoragePermissionBeforeAction(this, object : EmptyCallback {
|
||||||
val maxChooseCount = if (imageCount + 10 <= MAX_IMAGE_COUNT) 10 else MAX_IMAGE_COUNT - imageCount
|
override fun onCallback() {
|
||||||
val intent = LocalMediaActivity.getIntent(
|
val maxChooseCount = if (imageCount + 10 <= MAX_MEDIA_COUNT) 10 else MAX_MEDIA_COUNT - imageCount
|
||||||
this@BaseRichEditorActivity,
|
val intent = LocalMediaActivity.getIntent(
|
||||||
LocalMediaActivity.ChooseType.IMAGE,
|
this@BaseRichEditorActivity,
|
||||||
maxChooseCount,
|
LocalMediaActivity.ChooseType.IMAGE,
|
||||||
if (mtaEventName() == "提问帖") "发提问帖" else "发帖子"
|
maxChooseCount,
|
||||||
)
|
if (mtaEventName() == "提问帖") "发提问帖" else "发帖子"
|
||||||
startActivityForResult(intent, REQUEST_CODE_IMAGE)
|
)
|
||||||
}
|
startActivityForResult(intent, REQUEST_CODE_IMAGE)
|
||||||
|
}
|
||||||
|
})
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
toast(R.string.media_image_hint)
|
toast(R.string.media_image_hint)
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
@ -559,7 +512,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
mEditorFontContainer.visibility = if (mEditorFont.isChecked) View.VISIBLE else View.GONE
|
mEditorFontContainer.visibility = if (mEditorFont.isChecked) View.VISIBLE else View.GONE
|
||||||
mEditorParagraphContainer.visibility =
|
mEditorParagraphContainer.visibility =
|
||||||
if (mEditorFont.isChecked) View.VISIBLE else View.GONE
|
if (mEditorFont.isChecked) View.VISIBLE else View.GONE
|
||||||
mEditorAlignContainer.visibility = if (mEditorFont.isChecked) View.VISIBLE else View.GONE
|
|
||||||
mEditorLinkContainer.visibility = View.GONE
|
mEditorLinkContainer.visibility = View.GONE
|
||||||
mTagsContainer.visibility = View.GONE
|
mTagsContainer.visibility = View.GONE
|
||||||
mIsExtendedKeyboardShow = mEditorFont.isChecked
|
mIsExtendedKeyboardShow = mEditorFont.isChecked
|
||||||
@ -581,7 +533,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
if (mEditorLink.isChecked) View.VISIBLE else View.GONE
|
if (mEditorLink.isChecked) View.VISIBLE else View.GONE
|
||||||
mEditorLinkContainer.visibility = if (mEditorLink.isChecked) View.VISIBLE else View.GONE
|
mEditorLinkContainer.visibility = if (mEditorLink.isChecked) View.VISIBLE else View.GONE
|
||||||
mEditorFontContainer.visibility = View.GONE
|
mEditorFontContainer.visibility = View.GONE
|
||||||
mEditorAlignContainer.visibility = View.GONE
|
|
||||||
mEditorParagraphContainer.visibility = View.GONE
|
mEditorParagraphContainer.visibility = View.GONE
|
||||||
mTagsContainer.visibility = View.GONE
|
mTagsContainer.visibility = View.GONE
|
||||||
mIsExtendedKeyboardShow = mEditorLink.isChecked
|
mIsExtendedKeyboardShow = mEditorLink.isChecked
|
||||||
@ -797,10 +748,8 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
|
|
||||||
override fun onDarkModeChanged() {
|
override fun onDarkModeChanged() {
|
||||||
super.onDarkModeChanged()
|
super.onDarkModeChanged()
|
||||||
updateStatusBarColor(R.color.ui_surface, R.color.ui_surface)
|
updateStatusBarColor(R.color.background_white, R.color.background_white)
|
||||||
mRichEditor.enableForceDark(DarkModeUtils.isDarkModeOn(this))
|
mRichEditor.enableForceDark(DarkModeUtils.isDarkModeOn(this))
|
||||||
mRichEditor.setEditorBackgroundColor(R.color.ui_surface.toColor(this))
|
|
||||||
mRichEditor.setEditorFontColor(if (mIsDarkModeOn) Color.parseColor("#C2C2C2") else Color.parseColor("#4A4A4A"))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
@ -821,7 +770,6 @@ abstract class BaseRichEditorActivity<VM : BaseRichEditorViewModel> constructor(
|
|||||||
const val INSERT_VIDEO_CODE = 415
|
const val INSERT_VIDEO_CODE = 415
|
||||||
const val MAX_INPUT_TEXT_NUM = 10000
|
const val MAX_INPUT_TEXT_NUM = 10000
|
||||||
const val MAX_MEDIA_COUNT = 20
|
const val MAX_MEDIA_COUNT = 20
|
||||||
const val MAX_IMAGE_COUNT = 70
|
|
||||||
|
|
||||||
const val REQUEST_CODE_IMAGE = 120
|
const val REQUEST_CODE_IMAGE = 120
|
||||||
const val INSERT_MEDIA_VIDEO_CODE = 121
|
const val INSERT_MEDIA_VIDEO_CODE = 121
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
package com.gh.base
|
package com.gh.base
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
|
||||||
import android.app.Application
|
import android.app.Application
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.graphics.Bitmap
|
import android.graphics.Bitmap
|
||||||
@ -10,19 +9,16 @@ import android.text.TextUtils
|
|||||||
import androidx.lifecycle.AndroidViewModel
|
import androidx.lifecycle.AndroidViewModel
|
||||||
import androidx.lifecycle.MediatorLiveData
|
import androidx.lifecycle.MediatorLiveData
|
||||||
import androidx.lifecycle.MutableLiveData
|
import androidx.lifecycle.MutableLiveData
|
||||||
import com.gh.gamecenter.R
|
|
||||||
import com.gh.gamecenter.common.base.fragment.WaitingDialogFragment
|
import com.gh.gamecenter.common.base.fragment.WaitingDialogFragment
|
||||||
import com.gh.gamecenter.common.entity.ErrorEntity
|
|
||||||
import com.gh.gamecenter.common.retrofit.BiResponse
|
|
||||||
import com.gh.gamecenter.common.retrofit.Response
|
|
||||||
import com.gh.gamecenter.common.utils.*
|
|
||||||
import com.gh.gamecenter.core.runOnUiThread
|
import com.gh.gamecenter.core.runOnUiThread
|
||||||
import com.gh.gamecenter.core.utils.MD5Utils
|
import com.gh.gamecenter.R
|
||||||
import com.gh.gamecenter.core.utils.ToastUtils
|
import com.gh.gamecenter.common.utils.*
|
||||||
import com.gh.gamecenter.entity.ForumDetailEntity
|
import com.gh.gamecenter.core.utils.*
|
||||||
|
import com.gh.gamecenter.entity.ErrorEntity
|
||||||
import com.gh.gamecenter.entity.LocalVideoEntity
|
import com.gh.gamecenter.entity.LocalVideoEntity
|
||||||
import com.gh.gamecenter.entity.QuoteCountEntity
|
import com.gh.gamecenter.entity.QuoteCountEntity
|
||||||
import com.gh.gamecenter.qa.BbsType
|
import com.gh.gamecenter.qa.BbsType
|
||||||
|
import com.gh.gamecenter.common.retrofit.Response
|
||||||
import com.gh.gamecenter.retrofit.RetrofitManager
|
import com.gh.gamecenter.retrofit.RetrofitManager
|
||||||
import com.gh.gamecenter.retrofit.service.ApiService
|
import com.gh.gamecenter.retrofit.service.ApiService
|
||||||
import com.gh.gamecenter.video.upload.OnUploadListener
|
import com.gh.gamecenter.video.upload.OnUploadListener
|
||||||
@ -31,24 +27,25 @@ import com.google.gson.JsonObject
|
|||||||
import com.lightgame.utils.Utils
|
import com.lightgame.utils.Utils
|
||||||
import com.zhihu.matisse.Matisse
|
import com.zhihu.matisse.Matisse
|
||||||
import com.zhihu.matisse.internal.utils.PathUtils
|
import com.zhihu.matisse.internal.utils.PathUtils
|
||||||
import io.reactivex.android.schedulers.AndroidSchedulers
|
|
||||||
import io.reactivex.disposables.Disposable
|
import io.reactivex.disposables.Disposable
|
||||||
import io.reactivex.schedulers.Schedulers
|
|
||||||
import okhttp3.ResponseBody
|
import okhttp3.ResponseBody
|
||||||
import retrofit2.HttpException
|
import retrofit2.HttpException
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.io.FileOutputStream
|
import java.io.FileOutputStream
|
||||||
import java.util.*
|
import java.util.*
|
||||||
import kotlin.collections.ArrayList
|
|
||||||
import kotlin.collections.HashMap
|
import kotlin.collections.HashMap
|
||||||
import kotlin.collections.LinkedHashMap
|
import kotlin.collections.LinkedHashMap
|
||||||
|
import kotlin.collections.List
|
||||||
|
import kotlin.collections.Map
|
||||||
|
import kotlin.collections.find
|
||||||
|
import kotlin.collections.forEach
|
||||||
import kotlin.collections.set
|
import kotlin.collections.set
|
||||||
|
|
||||||
// TODO: 移动到module_bbs模块
|
// TODO: 移动到module_bbs模块
|
||||||
abstract class BaseRichEditorViewModel(application: Application) : AndroidViewModel(application) {
|
abstract class BaseRichEditorViewModel(application: Application) : AndroidViewModel(application) {
|
||||||
val mApi: ApiService = RetrofitManager.getInstance().api
|
val mApi: ApiService = RetrofitManager.getInstance().api
|
||||||
val mNewApi: ApiService = RetrofitManager.getInstance().newApi
|
|
||||||
val processDialog = MediatorLiveData<WaitingDialogFragment.WaitingDialogData>()
|
val processDialog = MediatorLiveData<WaitingDialogFragment.WaitingDialogData>()
|
||||||
|
val uploadingImage = ArrayList<LinkedHashMap<String, String>>()
|
||||||
val chooseImagesUpload = MutableLiveData<LinkedHashMap<String, String>>()
|
val chooseImagesUpload = MutableLiveData<LinkedHashMap<String, String>>()
|
||||||
val chooseImagesUploadSuccess = MutableLiveData<LinkedHashMap<String, String>>()
|
val chooseImagesUploadSuccess = MutableLiveData<LinkedHashMap<String, String>>()
|
||||||
var uploadImageSubscription: Disposable? = null
|
var uploadImageSubscription: Disposable? = null
|
||||||
@ -61,11 +58,10 @@ abstract class BaseRichEditorViewModel(application: Application) : AndroidViewMo
|
|||||||
val TITLE_MIN_LENGTH = 6
|
val TITLE_MIN_LENGTH = 6
|
||||||
val MIN_TEXT_LENGTH = 6
|
val MIN_TEXT_LENGTH = 6
|
||||||
val MAX_TEXT_LENGTH = 10000
|
val MAX_TEXT_LENGTH = 10000
|
||||||
|
val FILE_HOST = "file:///"
|
||||||
var id = ""//视频标记
|
var id = ""//视频标记
|
||||||
var videoId = ""//更改封面视频id
|
var videoId = ""//更改封面视频id
|
||||||
val quoteCountEntity = QuoteCountEntity()//数据上报用
|
val quoteCountEntity = QuoteCountEntity()//数据上报用
|
||||||
val sectionListLiveData = MutableLiveData<List<ForumDetailEntity.Section>>()
|
|
||||||
var isModerator = false
|
|
||||||
|
|
||||||
fun setUploadVideoListener(uploadVideoListener: UploadVideoListener) {
|
fun setUploadVideoListener(uploadVideoListener: UploadVideoListener) {
|
||||||
this.mUploadVideoListener = uploadVideoListener
|
this.mUploadVideoListener = uploadVideoListener
|
||||||
@ -74,10 +70,7 @@ abstract class BaseRichEditorViewModel(application: Application) : AndroidViewMo
|
|||||||
//检查图片是否符合规则并上传图片
|
//检查图片是否符合规则并上传图片
|
||||||
fun uploadPic(data: Intent) {
|
fun uploadPic(data: Intent) {
|
||||||
val uris = Matisse.obtainResult(data)
|
val uris = Matisse.obtainResult(data)
|
||||||
val rawImgUrlList = ArrayList<String>() // 需要上传图片的原始地址列表
|
val pictureList = ArrayList<String>()
|
||||||
val uploadingImgList = ArrayList<String>() // 正在上传图片的地址列表(已压缩处理)
|
|
||||||
val compressedImgUrlList = ArrayList<String>() // 压缩处理后图片的地址列表
|
|
||||||
|
|
||||||
for (uri in uris) {
|
for (uri in uris) {
|
||||||
val picturePath = PathUtils.getPath(getApplication(), uri)
|
val picturePath = PathUtils.getPath(getApplication(), uri)
|
||||||
if (picturePath != null) {
|
if (picturePath != null) {
|
||||||
@ -91,12 +84,12 @@ abstract class BaseRichEditorViewModel(application: Application) : AndroidViewMo
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
Utils.log("picturePath = $picturePath")
|
Utils.log("picturePath = $picturePath")
|
||||||
rawImgUrlList.add(picturePath)
|
pictureList.add(picturePath)
|
||||||
} else {
|
} else {
|
||||||
Utils.log("picturePath is null")
|
Utils.log("picturePath is null")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (rawImgUrlList.size == 0) return
|
if (pictureList.size == 0) return
|
||||||
val imageType = when (getRichType()) {
|
val imageType = when (getRichType()) {
|
||||||
RichType.ARTICLE -> UploadImageUtils.UploadType.community_article
|
RichType.ARTICLE -> UploadImageUtils.UploadType.community_article
|
||||||
RichType.QUESTION -> UploadImageUtils.UploadType.question
|
RichType.QUESTION -> UploadImageUtils.UploadType.question
|
||||||
@ -104,7 +97,7 @@ abstract class BaseRichEditorViewModel(application: Application) : AndroidViewMo
|
|||||||
}
|
}
|
||||||
uploadImageSubscription = UploadImageUtils.compressAndUploadImageList(
|
uploadImageSubscription = UploadImageUtils.compressAndUploadImageList(
|
||||||
imageType,
|
imageType,
|
||||||
rawImgUrlList,
|
pictureList,
|
||||||
false,
|
false,
|
||||||
object : UploadImageUtils.OnUploadImageListListener {
|
object : UploadImageUtils.OnUploadImageListListener {
|
||||||
override fun onProgress(total: Long, progress: Long) {}
|
override fun onProgress(total: Long, progress: Long) {}
|
||||||
@ -114,115 +107,87 @@ abstract class BaseRichEditorViewModel(application: Application) : AndroidViewMo
|
|||||||
imageUrls.forEach {
|
imageUrls.forEach {
|
||||||
chooseImageMd5Map[MD5Utils.getUrlMD5(it)] = ""
|
chooseImageMd5Map[MD5Utils.getUrlMD5(it)] = ""
|
||||||
}
|
}
|
||||||
uploadingImgList.addAll(imageUrls)
|
uploadingImage.add(chooseImageMd5Map)
|
||||||
compressedImgUrlList.addAll(imageUrls)
|
|
||||||
chooseImagesUpload.postValue(chooseImageMd5Map)
|
chooseImagesUpload.postValue(chooseImageMd5Map)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onSingleSuccess(imageUrlMap: Map<String, String>) {
|
override fun onSingleSuccess(imageUrl: Map<String, String>) {
|
||||||
imageUrlMap.forEach {
|
|
||||||
if (uploadingImgList.contains(it.key)) {
|
|
||||||
uploadingImgList.remove(it.key)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
val map = LinkedHashMap<String, String>()
|
val map = LinkedHashMap<String, String>()
|
||||||
for (key in imageUrlMap.keys) {
|
for (key in imageUrl.keys) {
|
||||||
// 文件格式为 HEIC 时,使用经 OSS 转码的图片作为预览图片
|
map[MD5Utils.getUrlMD5(key)] = FILE_HOST + key.decodeURI()
|
||||||
if (FileUtils.getFileMimeType(getApplication(), key.decodeURI())?.lowercase(Locale.CHINA)?.contains("heic") == true) {
|
mapImages[TextUtils.htmlEncode(key).decodeURI()] = imageUrl[key] ?: ""
|
||||||
val transformedImgUrl = ImageUtils.getIdealImageUrl(imageUrlMap[key], 5000) ?: ""
|
|
||||||
map[MD5Utils.getUrlMD5(key)] = transformedImgUrl
|
|
||||||
mapImages[transformedImgUrl.decodeURI()] = imageUrlMap[key] ?: ""
|
|
||||||
} else {
|
|
||||||
map[MD5Utils.getUrlMD5(key)] = imageUrlMap[key] ?: ""
|
|
||||||
mapImages[TextUtils.htmlEncode(key).decodeURI()] = imageUrlMap[key] ?: ""
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
chooseImagesUploadSuccess.value = map
|
chooseImagesUploadSuccess.postValue(map)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onSuccess(imageUrlMap: LinkedHashMap<String, String>, errorMap: Map<String, Exception>) {
|
override fun onSuccess(
|
||||||
imageUrlMap.forEach {
|
imageUrl: LinkedHashMap<String, String>,
|
||||||
if (uploadingImgList.contains(it.key)) {
|
errorMap: Map<String, Exception>
|
||||||
uploadingImgList.remove(it.key)
|
) {
|
||||||
}
|
val uploadMap = uploadingImage.find {
|
||||||
|
it.containsKey(
|
||||||
|
MD5Utils.getUrlMD5(
|
||||||
|
imageUrl.entries.iterator().next().key
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
uploadMap?.let {
|
||||||
|
uploadingImage.remove(uploadMap)
|
||||||
}
|
}
|
||||||
|
|
||||||
var errorSize = compressedImgUrlList.size - imageUrlMap.size
|
val errorSize = pictureList.size - imageUrl.size
|
||||||
if (errorSize > 0 || uploadingImgList.isNotEmpty()) {
|
if (errorSize > 0) {
|
||||||
val errorImageMap = LinkedHashMap<String, String>()
|
val map = LinkedHashMap<String, String>()
|
||||||
for (key in errorMap.keys) {
|
for (key in errorMap.keys) {
|
||||||
errorImageMap[MD5Utils.getUrlMD5(key)] = ""
|
map[MD5Utils.getUrlMD5(key)] = ""
|
||||||
}
|
}
|
||||||
|
//value为空会删除PlaceholderImage
|
||||||
|
chooseImagesUploadSuccess.postValue(map)
|
||||||
|
|
||||||
for (rawImgUrl in compressedImgUrlList) {
|
for (error in errorMap.values) {
|
||||||
if (!imageUrlMap.containsKey(rawImgUrl)) {
|
if (error is HttpException && error.code() == 403) {
|
||||||
errorImageMap[MD5Utils.getUrlMD5(rawImgUrl)] = ""
|
Utils.toast(getApplication(), errorSize.toString() + "张违规图片上传失败")
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
errorSize = if (errorMap.isEmpty()) {
|
Utils.toast(getApplication(), errorSize.toString() + "张图片上传失败")
|
||||||
errorImageMap.size
|
|
||||||
} else {
|
|
||||||
errorMap.size + errorImageMap.size
|
|
||||||
}
|
|
||||||
|
|
||||||
// value为空会删除PlaceholderImage
|
|
||||||
chooseImagesUploadSuccess.value = errorImageMap
|
|
||||||
|
|
||||||
if (handleUploadError(errorSize, errorMap)) return
|
|
||||||
|
|
||||||
if (errorSize > 0) {
|
|
||||||
ToastUtils.showToast(errorSize.toString() + "张图片上传失败")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onError(errorMap: Map<String, Exception>) {
|
override fun onError(errorMap: Map<String, Exception>) {
|
||||||
val errorSize = uploadingImgList.size
|
val errorSize = errorMap.size
|
||||||
if (uploadingImgList.size > 0) {
|
if (errorSize > 0) {
|
||||||
val map = LinkedHashMap<String, String>()
|
val map = LinkedHashMap<String, String>()
|
||||||
for (key in uploadingImgList) {
|
for (key in errorMap.keys) {
|
||||||
map[MD5Utils.getUrlMD5(key)] = ""
|
map[MD5Utils.getUrlMD5(key)] = ""
|
||||||
}
|
}
|
||||||
// value为空会删除PlaceholderImage
|
//value为空会删除PlaceholderImage
|
||||||
chooseImagesUploadSuccess.value = map
|
chooseImagesUploadSuccess.postValue(map)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (handleUploadError(errorSize, errorMap)) return
|
for (error in errorMap.values) {
|
||||||
|
if (error is HttpException && error.code() == 403) {
|
||||||
if (errorSize == 0) return
|
val e = error.response()?.errorBody()?.string()?.toObject<ErrorEntity>()
|
||||||
|
if (e != null && e.code == 403017) {
|
||||||
|
Utils.toast(
|
||||||
|
getApplication(),
|
||||||
|
errorSize.toString() + "张图片的宽或高超过限制,请裁剪后上传"
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
Utils.toast(getApplication(), errorSize.toString() + "张违规图片上传失败")
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
if (errorSize == 1) {
|
if (errorSize == 1) {
|
||||||
ToastUtils.showToast("图片上传失败")
|
Utils.toast(getApplication(), "图片上传失败")
|
||||||
} else {
|
} else {
|
||||||
ToastUtils.showToast(errorSize.toString() + "张图片上传失败")
|
Utils.toast(getApplication(), errorSize.toString() + "张图片上传失败")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理上传错误 (包括超时 cancel 的异常)
|
|
||||||
* @return 如果 toast 过了就返回 true
|
|
||||||
*/
|
|
||||||
private fun handleUploadError(
|
|
||||||
errorSize: Int,
|
|
||||||
errorMap: Map<String, Exception>
|
|
||||||
): Boolean {
|
|
||||||
for (error in errorMap.values) {
|
|
||||||
if (error is HttpException && error.code() == 403) {
|
|
||||||
val e = error.response()?.errorBody()?.string()?.toObject<ErrorEntity>()
|
|
||||||
if (e != null && e.code == 403017) {
|
|
||||||
ToastUtils.showToast(errorSize.toString() + "张图片的宽或高超过限制,请裁剪后上传")
|
|
||||||
} else {
|
|
||||||
ToastUtils.showToast(errorSize.toString() + "张违规图片上传失败")
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
fun uploadPoster(picturePath: String) {
|
fun uploadPoster(picturePath: String) {
|
||||||
processDialog.postValue(WaitingDialogFragment.WaitingDialogData("封面上传中...", true))
|
processDialog.postValue(WaitingDialogFragment.WaitingDialogData("封面上传中...", true))
|
||||||
uploadImageSubscription =
|
uploadImageSubscription =
|
||||||
@ -426,30 +391,6 @@ abstract class BaseRichEditorViewModel(application: Application) : AndroidViewMo
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getForumSections(bbsId: String) {
|
|
||||||
mNewApi.getForumSections(bbsId)
|
|
||||||
.compose(observableToMain())
|
|
||||||
.subscribe(object : Response<List<ForumDetailEntity.Section>>() {
|
|
||||||
override fun onResponse(response: List<ForumDetailEntity.Section>?) {
|
|
||||||
response?.run {
|
|
||||||
sectionListLiveData.postValue(this)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressLint("CheckResult")
|
|
||||||
fun getModeratorsInfo(bbsId: String) {
|
|
||||||
mApi.getModeratorsInfo(bbsId)
|
|
||||||
.subscribeOn(Schedulers.io())
|
|
||||||
.observeOn(AndroidSchedulers.mainThread())
|
|
||||||
.subscribe(object : BiResponse<JsonObject>() {
|
|
||||||
override fun onSuccess(data: JsonObject) {
|
|
||||||
isModerator = data["is_moderators"].asBoolean
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun getVideoType(): String {
|
private fun getVideoType(): String {
|
||||||
return when (type) {
|
return when (type) {
|
||||||
BbsType.GAME_BBS.value -> {
|
BbsType.GAME_BBS.value -> {
|
||||||
|
|||||||
@ -1,20 +1,18 @@
|
|||||||
package com.gh.base
|
package com.gh.base
|
||||||
|
|
||||||
import android.graphics.Typeface
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.text.TextUtils
|
||||||
import android.view.MenuItem
|
import android.view.MenuItem
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
import androidx.constraintlayout.widget.ConstraintLayout
|
|
||||||
import com.gh.download.DownloadManager
|
import com.gh.download.DownloadManager
|
||||||
import com.gh.gamecenter.DownloadManagerActivity
|
import com.gh.gamecenter.DownloadManagerActivity
|
||||||
import com.gh.gamecenter.R
|
import com.gh.gamecenter.R
|
||||||
import com.gh.gamecenter.common.base.activity.ToolBarActivity
|
import com.gh.gamecenter.common.base.activity.ToolBarActivity
|
||||||
import com.gh.gamecenter.common.constant.Constants
|
import com.gh.gamecenter.common.constant.Constants
|
||||||
import com.gh.gamecenter.common.utils.dip2px
|
|
||||||
import com.gh.gamecenter.common.utils.viewModelProvider
|
import com.gh.gamecenter.common.utils.viewModelProvider
|
||||||
|
import com.gh.gamecenter.core.utils.DisplayUtils
|
||||||
import com.gh.gamecenter.core.utils.SPUtils.getBoolean
|
import com.gh.gamecenter.core.utils.SPUtils.getBoolean
|
||||||
import com.gh.gamecenter.entity.GameUpdateEntity
|
import com.gh.gamecenter.entity.GameUpdateEntity
|
||||||
import com.gh.gamecenter.eventbus.EBDownloadStatus
|
import com.gh.gamecenter.eventbus.EBDownloadStatus
|
||||||
@ -46,7 +44,7 @@ abstract class DownloadToolbarActivity : ToolBarActivity() {
|
|||||||
|
|
||||||
override fun inflateMenu(res: Int) {
|
override fun inflateMenu(res: Int) {
|
||||||
super.inflateMenu(res)
|
super.inflateMenu(res)
|
||||||
if (!getBoolean(Constants.SP_TEENAGER_MODE) && showDownloadMenu()) {
|
if (showDownloadMenu()) {
|
||||||
createDownloadMenu(res)
|
createDownloadMenu(res)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -60,7 +58,6 @@ abstract class DownloadToolbarActivity : ToolBarActivity() {
|
|||||||
}
|
}
|
||||||
val downloadMenuView = mActionMenuView.menu.findItem(R.id.menu_download).actionView
|
val downloadMenuView = mActionMenuView.menu.findItem(R.id.menu_download).actionView
|
||||||
mDownloadCountHint = downloadMenuView?.findViewById(R.id.menu_download_count_hint)
|
mDownloadCountHint = downloadMenuView?.findViewById(R.id.menu_download_count_hint)
|
||||||
mDownloadCountHint?.typeface = Typeface.createFromAsset(assets, Constants.DIN_FONT_PATH)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onMenuItemClick(item: MenuItem?): Boolean {
|
override fun onMenuItemClick(item: MenuItem?): Boolean {
|
||||||
@ -77,27 +74,19 @@ abstract class DownloadToolbarActivity : ToolBarActivity() {
|
|||||||
if (mDownloadCountHint == null) return
|
if (mDownloadCountHint == null) return
|
||||||
val count = DownloadManager.getInstance().getDownloadOrUpdateCount(updateList)
|
val count = DownloadManager.getInstance().getDownloadOrUpdateCount(updateList)
|
||||||
if (count != null) {
|
if (count != null) {
|
||||||
mDownloadCountHint?.visibility = View.VISIBLE
|
mDownloadCountHint!!.visibility = View.VISIBLE
|
||||||
mDownloadCountHint?.text = count
|
mDownloadCountHint!!.text = count
|
||||||
val params = mDownloadCountHint?.layoutParams
|
val params = mDownloadCountHint!!.layoutParams
|
||||||
params?.width = if (count.isEmpty()) 6F.dip2px() else ConstraintLayout.LayoutParams.WRAP_CONTENT
|
if (TextUtils.isEmpty(count)) {
|
||||||
params?.height = if (count.isEmpty()) 6F.dip2px() else 14F.dip2px()
|
params.width = DisplayUtils.dip2px(6f)
|
||||||
(params as? ViewGroup.MarginLayoutParams)?.setMargins(
|
params.height = DisplayUtils.dip2px(6f)
|
||||||
0,
|
} else {
|
||||||
if (count.isEmpty()) 0 else (-4F).dip2px(),
|
params.width = DisplayUtils.dip2px(12f)
|
||||||
if (count.isEmpty()) (-4F).dip2px() else (-8F).dip2px(),
|
params.height = DisplayUtils.dip2px(12f)
|
||||||
0
|
}
|
||||||
)
|
mDownloadCountHint!!.layoutParams = params
|
||||||
mDownloadCountHint?.setPadding(
|
|
||||||
if (count.isEmpty()) 0 else 4F.dip2px(),
|
|
||||||
0,
|
|
||||||
if (count.isEmpty()) 0 else 4F.dip2px(),
|
|
||||||
0
|
|
||||||
)
|
|
||||||
mDownloadCountHint?.minWidth = if (count.isEmpty()) 0 else 14F.dip2px()
|
|
||||||
mDownloadCountHint?.layoutParams = params
|
|
||||||
} else {
|
} else {
|
||||||
mDownloadCountHint?.visibility = View.GONE
|
mDownloadCountHint!!.visibility = View.GONE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -4,27 +4,21 @@ import android.app.Activity
|
|||||||
import android.app.Application
|
import android.app.Application
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import com.alibaba.android.arouter.launcher.ARouter
|
|
||||||
import com.gh.ad.AdDelegateHelper
|
|
||||||
import com.gh.common.util.FloatingBackViewManager
|
import com.gh.common.util.FloatingBackViewManager
|
||||||
import com.gh.common.xapk.XapkInstaller
|
|
||||||
import com.gh.download.DownloadManager
|
import com.gh.download.DownloadManager
|
||||||
import com.gh.gamecenter.SingletonWebActivity
|
import com.gh.gamecenter.MainActivity
|
||||||
import com.gh.gamecenter.SkipActivity
|
|
||||||
import com.gh.gamecenter.SplashAdActivity
|
|
||||||
import com.gh.gamecenter.SplashScreenActivity
|
import com.gh.gamecenter.SplashScreenActivity
|
||||||
import com.gh.gamecenter.authorization.AuthorizationActivity
|
|
||||||
import com.gh.gamecenter.common.base.GlobalActivityManager
|
|
||||||
import com.gh.gamecenter.common.constant.RouteConsts
|
|
||||||
import com.gh.gamecenter.common.utils.PackageFlavorHelper
|
import com.gh.gamecenter.common.utils.PackageFlavorHelper
|
||||||
import com.gh.gamecenter.core.provider.IPushProvider
|
import com.gh.gamecenter.forum.detail.ForumDetailActivity
|
||||||
|
import com.gh.gamecenter.forum.list.ForumListActivity
|
||||||
|
import com.gh.gamecenter.qa.article.detail.ArticleDetailActivity
|
||||||
|
import com.gh.gamecenter.qa.questions.newdetail.NewQuestionDetailActivity
|
||||||
|
import com.gh.gamecenter.qa.video.detail.ForumVideoDetailActivity
|
||||||
import com.gh.vspace.VHelper
|
import com.gh.vspace.VHelper
|
||||||
import com.halo.assistant.HaloApp
|
import com.halo.assistant.HaloApp
|
||||||
|
|
||||||
// TODO:移动到对应的模块
|
// TODO:移动到对应的模块
|
||||||
class GlobalActivityLifecycleObserver : Application.ActivityLifecycleCallbacks {
|
class GlobalActivityLifecycleObserver : Application.ActivityLifecycleCallbacks {
|
||||||
private var isFromBackgroundToForeground = false // 是否后台回到前台
|
|
||||||
private var activityCount = 0
|
|
||||||
|
|
||||||
override fun onActivityCreated(activity: Activity, savedInstanceState: Bundle?) {
|
override fun onActivityCreated(activity: Activity, savedInstanceState: Bundle?) {
|
||||||
// do nothing
|
// do nothing
|
||||||
@ -32,25 +26,16 @@ class GlobalActivityLifecycleObserver : Application.ActivityLifecycleCallbacks {
|
|||||||
|
|
||||||
override fun onActivityStarted(activity: Activity) {
|
override fun onActivityStarted(activity: Activity) {
|
||||||
GlobalActivityManager.currentActivity = activity
|
GlobalActivityManager.currentActivity = activity
|
||||||
activityCount ++
|
|
||||||
if (activityCount == 1 && isFromBackgroundToForeground) {
|
|
||||||
if (AdDelegateHelper.shouldShowStartUpAd(true)
|
|
||||||
&& !HaloApp.getInstance().isSkippingThirdParty
|
|
||||||
&& activity !is SplashScreenActivity
|
|
||||||
&& activity !is SkipActivity
|
|
||||||
&& activity !is AuthorizationActivity
|
|
||||||
&& activity !is SplashAdActivity
|
|
||||||
) {
|
|
||||||
activity.startActivity(SplashAdActivity.getIntent(activity))
|
|
||||||
}
|
|
||||||
isFromBackgroundToForeground = false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onActivityResumed(activity: Activity) {
|
override fun onActivityResumed(activity: Activity) {
|
||||||
// 判断是否需要显示或隐藏返回小浮窗
|
// 判断是否需要显示或隐藏返回小浮窗
|
||||||
if (FloatingBackViewManager.getType().isNotEmpty()) {
|
if (FloatingBackViewManager.getType().isNotEmpty()) {
|
||||||
if (activity is SingletonWebActivity
|
if ((activity::class.java.name == "EnergyCenterActivity")
|
||||||
|
&& FloatingBackViewManager.getType() == FloatingBackViewManager.TYPE_TASK
|
||||||
|
) {
|
||||||
|
FloatingBackViewManager.disableBackView()
|
||||||
|
} else if (!shouldShowActivityBackView(activity)
|
||||||
&& FloatingBackViewManager.getType() == FloatingBackViewManager.TYPE_ACTIVITY
|
&& FloatingBackViewManager.getType() == FloatingBackViewManager.TYPE_ACTIVITY
|
||||||
) {
|
) {
|
||||||
FloatingBackViewManager.disableBackView()
|
FloatingBackViewManager.disableBackView()
|
||||||
@ -75,19 +60,18 @@ class GlobalActivityLifecycleObserver : Application.ActivityLifecycleCallbacks {
|
|||||||
DarkModeSwitchHelper.showDarkModeSwitchFloatingView(activity)
|
DarkModeSwitchHelper.showDarkModeSwitchFloatingView(activity)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (activity is AppCompatActivity
|
if (activity is AppCompatActivity && activity !is SplashScreenActivity) {
|
||||||
&& activity !is SplashScreenActivity
|
|
||||||
&& activity !is SkipActivity
|
|
||||||
&& activity !is AuthorizationActivity
|
|
||||||
) {
|
|
||||||
VHelper.showFeedbackDialogIfLastSuccessfulLaunchedGameExitUnexpectedly(activity)
|
VHelper.showFeedbackDialogIfLastSuccessfulLaunchedGameExitUnexpectedly(activity)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
XapkInstaller.updateCurrentInstallStatus()
|
private fun shouldShowActivityBackView(activity: Activity): Boolean {
|
||||||
|
return (activity is MainActivity
|
||||||
// 清除桌面角标
|
|| activity is ArticleDetailActivity
|
||||||
val pushProvider = ARouter.getInstance().build(RouteConsts.provider.push).navigation() as? IPushProvider
|
|| activity is ForumVideoDetailActivity
|
||||||
pushProvider?.cleanBadgeNumber(activity.applicationContext)
|
|| activity is ForumDetailActivity
|
||||||
|
|| activity is ForumListActivity
|
||||||
|
|| activity is NewQuestionDetailActivity)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onActivityPaused(activity: Activity) {
|
override fun onActivityPaused(activity: Activity) {
|
||||||
@ -98,8 +82,7 @@ class GlobalActivityLifecycleObserver : Application.ActivityLifecycleCallbacks {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onActivityStopped(activity: Activity) {
|
override fun onActivityStopped(activity: Activity) {
|
||||||
activityCount --
|
// do nothing
|
||||||
isFromBackgroundToForeground = activityCount <= 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onActivitySaveInstanceState(activity: Activity, outState: Bundle) {
|
override fun onActivitySaveInstanceState(activity: Activity, outState: Bundle) {
|
||||||
|
|||||||
14
app/src/main/java/com/gh/base/GlobalActivityManager.kt
Normal file
14
app/src/main/java/com/gh/base/GlobalActivityManager.kt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package com.gh.base
|
||||||
|
|
||||||
|
import android.app.Activity
|
||||||
|
import java.lang.ref.WeakReference
|
||||||
|
|
||||||
|
object GlobalActivityManager {
|
||||||
|
private var mCurrentActivityWeakRef: WeakReference<Activity>? = null
|
||||||
|
|
||||||
|
var currentActivity: Activity?
|
||||||
|
get() = mCurrentActivityWeakRef?.get()
|
||||||
|
set(activity) {
|
||||||
|
mCurrentActivityWeakRef = WeakReference<Activity>(activity)
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -4,90 +4,53 @@ import android.annotation.SuppressLint
|
|||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.util.Base64
|
import android.util.Base64
|
||||||
import android.view.View
|
|
||||||
import android.webkit.JavascriptInterface
|
import android.webkit.JavascriptInterface
|
||||||
import androidx.annotation.Keep
|
import androidx.annotation.Keep
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.fragment.app.Fragment
|
|
||||||
import androidx.fragment.app.FragmentActivity
|
import androidx.fragment.app.FragmentActivity
|
||||||
import androidx.fragment.app.FragmentManager
|
|
||||||
import com.alibaba.android.arouter.launcher.ARouter
|
|
||||||
import com.gh.common.exposure.ExposureManager
|
|
||||||
import com.gh.common.util.*
|
import com.gh.common.util.*
|
||||||
import com.gh.common.util.LogUtils
|
import com.gh.common.util.LogUtils
|
||||||
import com.gh.download.DownloadManager
|
|
||||||
import com.gh.download.PackageObserver
|
|
||||||
import com.gh.gamecenter.BuildConfig
|
import com.gh.gamecenter.BuildConfig
|
||||||
import com.gh.gamecenter.ImageViewerActivity
|
import com.gh.gamecenter.ImageViewerActivity
|
||||||
import com.gh.gamecenter.WebActivity
|
import com.gh.gamecenter.WebActivity
|
||||||
import com.gh.gamecenter.common.callback.BiCallback
|
import com.gh.gamecenter.common.callback.BiCallback
|
||||||
import com.gh.gamecenter.common.constant.Constants
|
import com.gh.gamecenter.common.constant.Constants
|
||||||
import com.gh.gamecenter.common.constant.RouteConsts
|
|
||||||
import com.gh.gamecenter.common.entity.NotificationUgc
|
import com.gh.gamecenter.common.entity.NotificationUgc
|
||||||
import com.gh.gamecenter.common.exposure.ExposureSource
|
|
||||||
import com.gh.gamecenter.common.loghub.LoghubUtils
|
import com.gh.gamecenter.common.loghub.LoghubUtils
|
||||||
import com.gh.gamecenter.common.provider.IHelpAndFeedbackProvider
|
|
||||||
import com.gh.gamecenter.common.tracker.Tracker
|
import com.gh.gamecenter.common.tracker.Tracker
|
||||||
import com.gh.gamecenter.common.utils.*
|
import com.gh.gamecenter.common.utils.*
|
||||||
import com.gh.gamecenter.common.utils.NewFlatLogUtils
|
|
||||||
import com.gh.gamecenter.common.view.dsbridge.CompletionHandler
|
import com.gh.gamecenter.common.view.dsbridge.CompletionHandler
|
||||||
import com.gh.gamecenter.core.AppExecutor
|
import com.gh.gamecenter.core.AppExecutor
|
||||||
import com.gh.gamecenter.core.runOnIoThread
|
import com.gh.gamecenter.core.runOnIoThread
|
||||||
import com.gh.gamecenter.core.runOnUiThread
|
import com.gh.gamecenter.core.runOnUiThread
|
||||||
import com.gh.gamecenter.core.utils.*
|
import com.gh.gamecenter.core.utils.CurrentActivityHolder
|
||||||
import com.gh.gamecenter.entity.SensorsEvent
|
import com.gh.gamecenter.core.utils.DisplayUtils
|
||||||
import com.gh.gamecenter.eventbus.EBDownloadStatus
|
import com.gh.gamecenter.core.utils.MtaHelper
|
||||||
import com.gh.gamecenter.eventbus.EBPackage
|
import com.gh.gamecenter.core.utils.SPUtils
|
||||||
import com.gh.gamecenter.feature.entity.Badge
|
import com.gh.gamecenter.energy.EnergyBridge
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.MtaEvent
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent
|
import com.gh.gamecenter.help.QaFeedbackDialogFragment
|
||||||
|
import com.gh.gamecenter.login.entity.Badge
|
||||||
import com.gh.gamecenter.login.user.LoginTag
|
import com.gh.gamecenter.login.user.LoginTag
|
||||||
import com.gh.gamecenter.login.user.UserManager
|
import com.gh.gamecenter.login.user.UserManager
|
||||||
import com.gh.gamecenter.login.user.UserRepository
|
import com.gh.gamecenter.login.user.UserRepository
|
||||||
import com.gh.gamecenter.login.utils.LoginHelper
|
import com.gh.gamecenter.login.utils.LoginHelper
|
||||||
|
import com.gh.gamecenter.login.utils.QuickLoginHelper
|
||||||
import com.gh.gamecenter.login.view.LoginActivity
|
import com.gh.gamecenter.login.view.LoginActivity
|
||||||
import com.gh.gamecenter.personalhome.border.AvatarBorderActivity
|
import com.gh.gamecenter.personalhome.border.AvatarBorderActivity
|
||||||
import com.gh.gamecenter.setting.SettingBridge
|
import com.gh.gamecenter.setting.compose.activity.ComposeAboutActivity
|
||||||
import com.gh.vspace.VHelper
|
import com.gh.gamecenter.setting.compose.activity.ComposeBindPhoneActivity
|
||||||
import com.halo.assistant.HaloApp
|
import com.halo.assistant.HaloApp
|
||||||
import com.lightgame.download.DataWatcher
|
|
||||||
import com.lightgame.download.DownloadEntity
|
|
||||||
import com.lightgame.download.DownloadStatus.*
|
|
||||||
import com.lightgame.utils.Utils
|
import com.lightgame.utils.Utils
|
||||||
import org.greenrobot.eventbus.EventBus
|
|
||||||
import org.greenrobot.eventbus.Subscribe
|
|
||||||
import org.greenrobot.eventbus.ThreadMode
|
|
||||||
import org.json.JSONObject
|
import org.json.JSONObject
|
||||||
import java.io.BufferedOutputStream
|
import java.io.BufferedOutputStream
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.io.FileOutputStream
|
import java.io.FileOutputStream
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
class DefaultJsApi(
|
class DefaultJsApi(var context: Context, val entrance: String = "") {
|
||||||
var context: Context,
|
|
||||||
val entrance: String = "",
|
|
||||||
private var mFragment: Fragment? = null,
|
|
||||||
private var mBbsId: String? = "",
|
|
||||||
private var mOriginUrl: String? = "",
|
|
||||||
private val mForumName: String? = ""
|
|
||||||
) {
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
private const val SOURCE_ENTRANCE = "webView"
|
|
||||||
}
|
|
||||||
|
|
||||||
private var mLoginHandler: CompletionHandler<Any>? = null
|
private var mLoginHandler: CompletionHandler<Any>? = null
|
||||||
private var mDownloadWatcher: DataWatcher? = null // 下载观察者
|
|
||||||
private var mDownloadUrlSet: HashSet<String>? = null // 下载的 url 集合
|
|
||||||
private var mDownloadHandler: CompletionHandler<Any>? = null // 下载信息回调
|
|
||||||
private var mExposureEvent: ExposureEvent? = null // 活动曝光实体
|
|
||||||
|
|
||||||
init {
|
|
||||||
if (mFragment != null) {
|
|
||||||
EventBus.getDefault().register(this)
|
|
||||||
autoUnregisterDownloadObserverIfNeeded(mFragment)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun isGhzs(msg: Any): String {
|
fun isGhzs(msg: Any): String {
|
||||||
@ -101,20 +64,9 @@ class DefaultJsApi(
|
|||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun logMtaEvent(event: Any) {
|
fun logMtaEvent(event: Any) {
|
||||||
// do nothing, mta is deprecated
|
val mtaEvent = event.toString().toObject() ?: MtaEvent()
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
MtaHelper.onEvent(mtaEvent.name, mtaEvent.key, mtaEvent.value)
|
||||||
fun logSensorsEvent(event: Any) {
|
|
||||||
val sensorsEvent = event.toString().toObject() ?: SensorsEvent()
|
|
||||||
val trackEvent = JSONObject()
|
|
||||||
tryCatchInRelease {
|
|
||||||
sensorsEvent.kv.split(",").forEach {
|
|
||||||
val kv = it.split(":")
|
|
||||||
trackEvent.put(kv[0], kv[1])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
SensorsBridge.trackEvent(sensorsEvent.name, trackEvent)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
@ -129,12 +81,12 @@ class DefaultJsApi(
|
|||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun login(msg: Any) {
|
fun login(msg: Any) {
|
||||||
// if (SPUtils.getBoolean(Constants.SP_HAS_GET_PHONE_INFO) || NetworkUtils.isOpenMobileData(context)) {
|
if (SPUtils.getBoolean(Constants.SP_HAS_GET_PHONE_INFO) || NetworkUtils.isOpenMobileData(context)) {
|
||||||
// QuickLoginHelper.startLogin(context, "浏览器")
|
QuickLoginHelper.startLogin(context, "浏览器")
|
||||||
// } else {
|
} else {
|
||||||
val intent = LoginActivity.getIntent(context, "浏览器")
|
val intent = LoginActivity.getIntent(context, "浏览器")
|
||||||
context.startActivity(intent)
|
context.startActivity(intent)
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
@ -179,6 +131,7 @@ class DefaultJsApi(
|
|||||||
|
|
||||||
WechatBindHelper.bindWechat(wechatLoginInfoMap, object : BiCallback<Boolean, Boolean> {
|
WechatBindHelper.bindWechat(wechatLoginInfoMap, object : BiCallback<Boolean, Boolean> {
|
||||||
override fun onFirst(first: Boolean) {
|
override fun onFirst(first: Boolean) {
|
||||||
|
EnergyBridge.postEnergyTask("bind_wechat")
|
||||||
handler.complete(true)
|
handler.complete(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -214,18 +167,7 @@ class DefaultJsApi(
|
|||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun startApp(msg: Any) {
|
fun startApp(msg: Any) {
|
||||||
val packageName = msg.toString()
|
val packageName = msg.toString()
|
||||||
val context = HaloApp.getInstance().application
|
PackageUtils.launchApplicationByPackageName(HaloApp.getInstance().application, packageName)
|
||||||
|
|
||||||
runOnUiThread {
|
|
||||||
// 若畅玩列表中安装了,优先启动畅玩游戏
|
|
||||||
if (VHelper.isInstalled(packageName)) {
|
|
||||||
if (!VHelper.showDialogIfVSpaceIsNeeded(context, "", "", "", "")) {
|
|
||||||
VHelper.launch(context, packageName)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
PackageLauncher.launchApp(context, packageName = packageName)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
@ -234,14 +176,7 @@ class DefaultJsApi(
|
|||||||
|
|
||||||
val context = CurrentActivityHolder.getCurrentActivity()
|
val context = CurrentActivityHolder.getCurrentActivity()
|
||||||
|
|
||||||
context?.startActivity(
|
context?.startActivity(ImageViewerActivity.getIntent(context, imageEvent.imageList, imageEvent.position, "浏览器"))
|
||||||
ImageViewerActivity.getIntent(
|
|
||||||
context,
|
|
||||||
imageEvent.imageList,
|
|
||||||
imageEvent.position,
|
|
||||||
"浏览器"
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
@ -280,31 +215,6 @@ class DefaultJsApi(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否为论坛详情的专区
|
|
||||||
*/
|
|
||||||
@JavascriptInterface
|
|
||||||
fun isForumZone(msg: Any): Boolean {
|
|
||||||
return !mBbsId.isNullOrEmpty()
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 打开论坛搜索页
|
|
||||||
* 如果用户是从 webView跳转到论坛搜索页,则sourceEntrance为空
|
|
||||||
*/
|
|
||||||
@JavascriptInterface
|
|
||||||
fun openForumSearch(msg: Any) {
|
|
||||||
runOnUiThread {
|
|
||||||
DirectUtils.directToForumOrUserSearch(
|
|
||||||
context,
|
|
||||||
mBbsId ?: "",
|
|
||||||
entrance.ifBlank { "内部网页" },
|
|
||||||
SOURCE_ENTRANCE,
|
|
||||||
mForumName ?: ""
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun exitWebView(msg: Any) {
|
fun exitWebView(msg: Any) {
|
||||||
runOnUiThread { (context as Activity).finish() }
|
runOnUiThread { (context as Activity).finish() }
|
||||||
@ -313,6 +223,7 @@ class DefaultJsApi(
|
|||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun updateRegulationTestStatus(msg: Any) {
|
fun updateRegulationTestStatus(msg: Any) {
|
||||||
if (msg.toString().toLowerCase(Locale.getDefault()) == "pass") {
|
if (msg.toString().toLowerCase(Locale.getDefault()) == "pass") {
|
||||||
|
EnergyBridge.postEnergyTask("finish_etiquette_exam")
|
||||||
SPUtils.setString(Constants.SP_REGULATION_TEST_PASS_STATUS, "pass")
|
SPUtils.setString(Constants.SP_REGULATION_TEST_PASS_STATUS, "pass")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -328,11 +239,6 @@ class DefaultJsApi(
|
|||||||
return HaloApp.getInstance().gid
|
return HaloApp.getInstance().gid
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun getOaid(msg: Any): String {
|
|
||||||
return HaloApp.getInstance().oaid
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun showIncompatibleVersionDialog(msg: Any) {
|
fun showIncompatibleVersionDialog(msg: Any) {
|
||||||
DialogHelper.showUpgradeDialog(context)
|
DialogHelper.showUpgradeDialog(context)
|
||||||
@ -364,7 +270,7 @@ class DefaultJsApi(
|
|||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun bindPhone(msg: Any) {
|
fun bindPhone(msg: Any) {
|
||||||
val intent = SettingBridge.getBindPhoneNormalIntent(context, false)
|
val intent = ComposeBindPhoneActivity.getNormalIntent(context, false)
|
||||||
context.startActivity(intent)
|
context.startActivity(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -393,24 +299,22 @@ class DefaultJsApi(
|
|||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun postWearBadgeTask(msg: Any) {
|
fun postWearBadgeTask(msg: Any) {
|
||||||
// do nothing
|
EnergyBridge.postEnergyTask("wear_badge")
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun startEnergyCenter(msg: Any) {
|
fun startEnergyCenter(msg: Any) {
|
||||||
// do nothing
|
context.startActivity(EnergyBridge.getEnergyCenterIntent(context))
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun startEnergyHouse(msg: Any) {
|
fun startEnergyHouse(msg: Any) {
|
||||||
// do nothing
|
context.startActivity(EnergyBridge.getEnergyHouseIntent(context, null))
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun showQaFeedbackDialog(msg: Any) {
|
fun showQaFeedbackDialog(msg: Any) {
|
||||||
val mHelpAndFeedbackHelp =
|
QaFeedbackDialogFragment.show(context as AppCompatActivity, msg.toString())
|
||||||
ARouter.getInstance().build(RouteConsts.provider.helpAndFeedback).navigation() as? IHelpAndFeedbackProvider
|
|
||||||
mHelpAndFeedbackHelp?.showQaFeedbackDialogFragment(context as AppCompatActivity, msg.toString())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
@ -457,6 +361,11 @@ class DefaultJsApi(
|
|||||||
FloatingBackViewManager.enableBackView(FloatingBackViewManager.TYPE_ACTIVITY, msg.toString())
|
FloatingBackViewManager.enableBackView(FloatingBackViewManager.TYPE_ACTIVITY, msg.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@JavascriptInterface
|
||||||
|
fun startBBSStayTimeCount(msg: Any) {
|
||||||
|
BbsStayTimeHelper.enableStayTimeCount(msg.toString().toInt())
|
||||||
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun saveBase64ImageToGallery(msg: Any) {
|
fun saveBase64ImageToGallery(msg: Any) {
|
||||||
val base64StringData = msg.toString()
|
val base64StringData = msg.toString()
|
||||||
@ -496,9 +405,18 @@ class DefaultJsApi(
|
|||||||
runOnUiThread { DirectUtils.directToFullScreenWebPage(context, url.toString(), true, entrance) }
|
runOnUiThread { DirectUtils.directToFullScreenWebPage(context, url.toString(), true, entrance) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@JavascriptInterface
|
||||||
|
fun startGameCollectionSquareBrowseTask(event: Any) {
|
||||||
|
val browseTimeEvent = event.toString().toObject() ?: BrowseTaskEvent()
|
||||||
|
GameCollectionSquareBrowseTaskHelper.enableBrowseTimeCount(
|
||||||
|
browseTimeEvent.timeout.toInt(),
|
||||||
|
browseTimeEvent.isFinished == "true"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun checkUpdateGhzs(msg: Any) {
|
fun checkUpdateGhzs(msg: Any) {
|
||||||
context.startActivity(SettingBridge.getAboutIntent(context, true))
|
context.startActivity(ComposeAboutActivity.getIntent(context, true))
|
||||||
}
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
@ -521,233 +439,17 @@ class DefaultJsApi(
|
|||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
fun getEntrance(msg: Any): String {
|
fun getEntrance(msg: Any): String {
|
||||||
return when {
|
return entrance
|
||||||
entrance.contains("论坛-活动") -> "社区-活动tab-活动banner"
|
|
||||||
entrance.contains("启动弹窗") -> "首页_弹窗"
|
|
||||||
entrance.contains("新首页-轮播图") -> "首页banner"
|
|
||||||
entrance.contains("论坛banner") -> "社区banner"
|
|
||||||
entrance.contains("启动广告") -> "app_开屏文案"
|
|
||||||
// entrance.contains("资讯广场-轮播图") -> "资讯_活动banner"
|
|
||||||
entrance.contains("通用链接合集") -> "资讯_活动banner"
|
|
||||||
entrance.contains("视频流广告位") -> "视频流_广告位"
|
|
||||||
entrance.contains("我的光环banner") -> "我的光环_banner"
|
|
||||||
entrance.contains("论坛详情页置顶栏") -> "社区_论坛置顶"
|
|
||||||
|
|
||||||
else -> entrance
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun getInstallStatus(event: Any): String {
|
|
||||||
val localInstalledPackageList = PackageUtils.getAllPackageName(HaloApp.getInstance().application)
|
|
||||||
val packageNameList: ArrayList<String> = event.toString().toObject() ?: ArrayList()
|
|
||||||
val installStatusMap: HashMap<String, Boolean> = hashMapOf()
|
|
||||||
|
|
||||||
for (packageName in packageNameList) {
|
|
||||||
installStatusMap[packageName] =
|
|
||||||
localInstalledPackageList.contains(packageName) || VHelper.isInstalled(packageName)
|
|
||||||
}
|
|
||||||
|
|
||||||
return installStatusMap.toJson()
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun installDownloadedGame(event: Any) {
|
|
||||||
val url = event.toString()
|
|
||||||
|
|
||||||
val downloadEntity = DownloadManager.getInstance().getDownloadEntitySnapshot(url, null)
|
|
||||||
?: DownloadManager.getInstance().getDownloadEntitySnapshot(url, null)
|
|
||||||
|
|
||||||
NewFlatLogUtils.logGameInstall(
|
|
||||||
gameId = downloadEntity?.gameId ?: "",
|
|
||||||
gameName = downloadEntity?.name ?: "",
|
|
||||||
trigger = "主动安装"
|
|
||||||
)
|
|
||||||
|
|
||||||
SensorsBridge.trackInstallGameClick(
|
|
||||||
gameId = downloadEntity?.gameId ?: "",
|
|
||||||
gameName = downloadEntity?.name ?: "",
|
|
||||||
action = "主动安装"
|
|
||||||
)
|
|
||||||
|
|
||||||
downloadEntity?.let {
|
|
||||||
PackageInstaller.install(context, it, showUnzipToast = false, ignoreAsVGame = false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun registerDownloadCallback(msg: Any, handler: CompletionHandler<Any>) {
|
|
||||||
val downloadUrlSet: HashSet<String> = msg.toString().toObject() ?: return
|
|
||||||
|
|
||||||
mDownloadHandler = handler
|
|
||||||
mDownloadUrlSet = downloadUrlSet
|
|
||||||
|
|
||||||
if (mDownloadWatcher == null) {
|
|
||||||
mDownloadWatcher = object : DataWatcher() {
|
|
||||||
override fun onDataInit(downloadEntity: DownloadEntity) {
|
|
||||||
onDataChanged(downloadEntity)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onDataChanged(downloadEntity: DownloadEntity?) {
|
|
||||||
val url = VHelper.getOriginalUrl(downloadEntity?.url)
|
|
||||||
|
|
||||||
if (downloadEntity != null && mDownloadUrlSet?.contains(url) == true) {
|
|
||||||
mDownloadHandler?.setProgressData(
|
|
||||||
SimpleDownloadEntity.fromDownloadEntity(downloadEntity).toJson()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
DownloadManager.getInstance().addObserver(mDownloadWatcher)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun registerPackageChangesCallback(msg: Any, handler: CompletionHandler<Any>) {
|
|
||||||
PackageObserver.registerPackageChangeChangeListener(object : PackageObserver.PackageChangeListener {
|
|
||||||
override fun onChanged(data: EBPackage) {
|
|
||||||
handler.setProgressData(data.toJson())
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun startDownload(msg: Any) {
|
|
||||||
val gameEntity: GameEntity? = msg.toString().toObject()
|
|
||||||
|
|
||||||
if (gameEntity == null) {
|
|
||||||
ToastUtils.toast("下载异常,请稍后重试")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
runOnUiThread {
|
|
||||||
// 用一个假的 view 来当 downloadView
|
|
||||||
val stubView = View(context)
|
|
||||||
DownloadItemUtils.setOnClickListener(
|
|
||||||
position = 0,
|
|
||||||
context = context,
|
|
||||||
downloadBtn = stubView,
|
|
||||||
gameEntity = gameEntity,
|
|
||||||
adapter = null,
|
|
||||||
entrance = "(网页活动)",
|
|
||||||
location = "",
|
|
||||||
traceEvent = null,
|
|
||||||
clickCallback = null,
|
|
||||||
refreshCallback = null,
|
|
||||||
allStateClickCallback = null
|
|
||||||
)
|
|
||||||
|
|
||||||
stubView.performClick()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun resumeDownload(msg: Any) {
|
|
||||||
val url = msg.toString()
|
|
||||||
|
|
||||||
DownloadManager.getInstance().resumeDownload(url)
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun pauseDownload(msg: Any) {
|
|
||||||
val url = msg.toString()
|
|
||||||
|
|
||||||
DownloadManager.getInstance().pause(url)
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun shareText(event: Any) {
|
|
||||||
val textShareEvent = event.toString().toObject() ?: TextShareEvent()
|
|
||||||
if (textShareEvent.text.isNotEmpty() && textShareEvent.type.isNotEmpty()) {
|
|
||||||
val activity = CurrentActivityHolder.getCurrentActivity()
|
|
||||||
MessageShareUtils.getInstance(activity).shareTextFromWeb(activity, textShareEvent.text, textShareEvent.type)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@JavascriptInterface
|
|
||||||
fun logExposure(event: Any) {
|
|
||||||
val simpleExposureEvent = event.toString().toObject() ?: SimpleExposureEvent()
|
|
||||||
if (simpleExposureEvent.id.isNotEmpty()) {
|
|
||||||
val sourceKey = if (mOriginUrl?.contains(Constants.URL_QUERY_FROM_FLOATING_WINDOW) == true) {
|
|
||||||
"落地页"
|
|
||||||
} else {
|
|
||||||
"游戏活动"
|
|
||||||
}
|
|
||||||
|
|
||||||
val exposureSource = ExposureSource(sourceKey, "${simpleExposureEvent.title}+${simpleExposureEvent.id}")
|
|
||||||
mExposureEvent = ExposureEvent.createEvent(
|
|
||||||
gameEntity = null,
|
|
||||||
source = arrayListOf(exposureSource),
|
|
||||||
)
|
|
||||||
ExposureManager.log(mExposureEvent!!)
|
|
||||||
ExposureManager.commitSavedExposureEvents(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取 ExposureEvent,可能为空
|
|
||||||
*/
|
|
||||||
fun getExposureEvent(): ExposureEvent? {
|
|
||||||
return mExposureEvent
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun autoUnregisterDownloadObserverIfNeeded(fragment: Fragment?) {
|
|
||||||
fragment?.parentFragmentManager?.registerFragmentLifecycleCallbacks(
|
|
||||||
object : FragmentManager.FragmentLifecycleCallbacks() {
|
|
||||||
override fun onFragmentViewDestroyed(fm: FragmentManager, f: Fragment) {
|
|
||||||
super.onFragmentViewDestroyed(fm, f)
|
|
||||||
if (f === fragment) {
|
|
||||||
fragment.parentFragmentManager.unregisterFragmentLifecycleCallbacks(this)
|
|
||||||
|
|
||||||
if (mDownloadWatcher != null) {
|
|
||||||
DownloadManager.getInstance().removeObserver(mDownloadWatcher)
|
|
||||||
}
|
|
||||||
|
|
||||||
EventBus.getDefault().unregister(this@DefaultJsApi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onFragmentResumed(fm: FragmentManager, f: Fragment) {
|
|
||||||
super.onFragmentResumed(fm, f)
|
|
||||||
|
|
||||||
if (f === fragment && mDownloadWatcher != null) {
|
|
||||||
DownloadManager.getInstance().addObserver(mDownloadWatcher)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onFragmentPaused(fm: FragmentManager, f: Fragment) {
|
|
||||||
super.onFragmentPaused(fm, f)
|
|
||||||
|
|
||||||
if (f === fragment && mDownloadWatcher != null) {
|
|
||||||
DownloadManager.getInstance().removeObserver(mDownloadWatcher)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, false
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
|
||||||
fun onEventMainThread(status: EBDownloadStatus) {
|
|
||||||
// 将下载任务删除事件回调给网页
|
|
||||||
if (mDownloadHandler != null && "delete" == status.status) {
|
|
||||||
mDownloadHandler?.setProgressData(SimpleDownloadEntity(status.url, 0F, "UNKNOWN").toJson())
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
internal class ImageEvent(var imageList: ArrayList<String> = arrayListOf(), var position: Int = 0)
|
internal data class ImageEvent(var imageList: ArrayList<String> = arrayListOf(), var position: Int = 0)
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
internal class ImageShareEvent(var image: String = "", var type: String = "")
|
internal data class ImageShareEvent(var image: String = "", var type: String = "")
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
internal class TextShareEvent(var text: String = "", var type: String = "")
|
internal data class InviteFriendsEvent(
|
||||||
|
|
||||||
@Keep
|
|
||||||
internal class SimpleExposureEvent(var title: String = "", var id: String = "")
|
|
||||||
|
|
||||||
@Keep
|
|
||||||
internal class InviteFriendsEvent(
|
|
||||||
var type: String = "",
|
var type: String = "",
|
||||||
var way: String = "",
|
var way: String = "",
|
||||||
var url: String = "",
|
var url: String = "",
|
||||||
@ -755,49 +457,16 @@ class DefaultJsApi(
|
|||||||
)
|
)
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
internal class LogEvent(var jsonString: String = "", var logStore: String = "")
|
internal data class LogEvent(var jsonString: String = "", var logStore: String = "")
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
class GameActivityEvent(
|
internal data class BrowseTaskEvent(var timeout: String = "", var isFinished: String = "")
|
||||||
|
|
||||||
|
@Keep
|
||||||
|
data class GameActivityEvent(
|
||||||
var gameId: String = "",
|
var gameId: String = "",
|
||||||
var activityTitle: String = "",
|
var activityTitle: String = "",
|
||||||
var activityId: String = "",
|
var activityId: String = "",
|
||||||
var platform: String = ""
|
var platform: String = ""
|
||||||
)
|
)
|
||||||
|
|
||||||
@Keep
|
|
||||||
class SimpleDownloadEntity(
|
|
||||||
var url: String = "",
|
|
||||||
var progress: Float = 0F,
|
|
||||||
var status: String = "" // DOWNLOADING, PAUSED, DOWNLOADED, ERROR, UNKNOWN
|
|
||||||
) {
|
|
||||||
companion object {
|
|
||||||
|
|
||||||
fun fromDownloadEntity(downloadEntity: DownloadEntity): SimpleDownloadEntity {
|
|
||||||
val status: String = when (downloadEntity.status) {
|
|
||||||
add,
|
|
||||||
download,
|
|
||||||
downloading -> "DOWNLOADING"
|
|
||||||
|
|
||||||
done -> "DOWNLOADED"
|
|
||||||
|
|
||||||
pause,
|
|
||||||
resume,
|
|
||||||
subscribe,
|
|
||||||
waiting -> "PAUSED"
|
|
||||||
|
|
||||||
cancel,
|
|
||||||
delete -> "UNKNOWN"
|
|
||||||
|
|
||||||
else -> "ERROR"
|
|
||||||
}
|
|
||||||
|
|
||||||
return SimpleDownloadEntity(
|
|
||||||
url = VHelper.getOriginalUrl(downloadEntity.url),
|
|
||||||
progress = downloadEntity.percent.toFloat(),
|
|
||||||
status = status
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,8 +5,9 @@ import android.content.Intent
|
|||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import android.text.TextUtils
|
import android.text.TextUtils
|
||||||
import android.util.Base64
|
import android.util.Base64
|
||||||
import com.gh.common.util.CheckLoginUtils
|
import com.gh.gamecenter.core.utils.CurrentActivityHolder
|
||||||
import com.gh.common.util.DirectUtils
|
import com.gh.gamecenter.common.constant.Constants
|
||||||
|
import com.gh.common.util.*
|
||||||
import com.gh.common.util.DirectUtils.directToFeedback
|
import com.gh.common.util.DirectUtils.directToFeedback
|
||||||
import com.gh.common.util.DirectUtils.directToGameDetailVideoStreaming
|
import com.gh.common.util.DirectUtils.directToGameDetailVideoStreaming
|
||||||
import com.gh.common.util.DirectUtils.directToGameServerCalendar
|
import com.gh.common.util.DirectUtils.directToGameServerCalendar
|
||||||
@ -14,57 +15,39 @@ import com.gh.common.util.DirectUtils.directToGameVideo
|
|||||||
import com.gh.common.util.DirectUtils.directToLegacyVideoDetail
|
import com.gh.common.util.DirectUtils.directToLegacyVideoDetail
|
||||||
import com.gh.common.util.DirectUtils.directToLinkPage
|
import com.gh.common.util.DirectUtils.directToLinkPage
|
||||||
import com.gh.common.util.DirectUtils.directToQa
|
import com.gh.common.util.DirectUtils.directToQa
|
||||||
import com.gh.common.util.PackageUtils
|
import com.gh.gamecenter.core.utils.GsonUtils.gson
|
||||||
|
import com.gh.gamecenter.LibaoDetailActivity
|
||||||
|
import com.gh.gamecenter.MainActivity
|
||||||
|
import com.gh.gamecenter.NewsDetailActivity
|
||||||
import com.gh.gamecenter.WebActivity
|
import com.gh.gamecenter.WebActivity
|
||||||
import com.gh.gamecenter.common.constant.Constants
|
|
||||||
import com.gh.gamecenter.common.constant.EntranceConsts
|
import com.gh.gamecenter.common.constant.EntranceConsts
|
||||||
import com.gh.gamecenter.common.entity.CommunityEntity
|
import com.gh.gamecenter.common.entity.CommunityEntity
|
||||||
import com.gh.gamecenter.common.entity.LinkEntity
|
import com.gh.gamecenter.common.entity.LinkEntity
|
||||||
import com.gh.gamecenter.common.entity.SimpleGameEntity
|
import com.gh.gamecenter.core.AppExecutor
|
||||||
import com.gh.gamecenter.common.eventbus.EBReuse
|
|
||||||
import com.gh.gamecenter.common.utils.DialogHelper
|
import com.gh.gamecenter.common.utils.DialogHelper
|
||||||
import com.gh.gamecenter.common.utils.EnvHelper
|
import com.gh.gamecenter.common.utils.EnvHelper
|
||||||
import com.gh.gamecenter.core.AppExecutor
|
|
||||||
import com.gh.gamecenter.core.utils.CurrentActivityHolder
|
|
||||||
import com.gh.gamecenter.core.utils.GsonUtils.gson
|
|
||||||
import com.gh.gamecenter.core.utils.ToastUtils
|
import com.gh.gamecenter.core.utils.ToastUtils
|
||||||
import com.gh.gamecenter.entity.ActivityLabelEntity
|
import com.gh.gamecenter.entity.*
|
||||||
import com.gh.gamecenter.entity.SubjectRecommendEntity
|
|
||||||
import com.gh.gamecenter.entity.VideoLinkEntity
|
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent
|
|
||||||
import com.gh.gamecenter.feature.utils.PlatformUtils
|
|
||||||
import com.gh.gamecenter.gamecollection.publish.GameCollectionEditActivity
|
import com.gh.gamecenter.gamecollection.publish.GameCollectionEditActivity
|
||||||
import com.gh.gamecenter.libao.LibaoDetailActivity
|
|
||||||
import com.gh.gamecenter.newsdetail.NewsDetailActivity
|
|
||||||
import com.gh.gamecenter.qa.BbsType
|
import com.gh.gamecenter.qa.BbsType
|
||||||
import com.gh.gamecenter.qa.video.publish.VideoPublishActivity
|
import com.gh.gamecenter.qa.video.publish.VideoPublishActivity
|
||||||
import com.gh.gamecenter.subject.SubjectActivity
|
import com.gh.gamecenter.subject.SubjectActivity
|
||||||
import com.gh.gamecenter.video.detail.VideoDetailContainerViewModel
|
import com.gh.gamecenter.video.detail.VideoDetailContainerViewModel
|
||||||
import com.lightgame.utils.Utils
|
import com.lightgame.utils.Utils
|
||||||
import org.greenrobot.eventbus.EventBus
|
|
||||||
import java.nio.charset.Charset
|
import java.nio.charset.Charset
|
||||||
|
|
||||||
object DefaultUrlHandler {
|
object DefaultUrlHandler {
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun interceptUrl(context: Context, url: String, entrance: String, sourceEntrance: String = ""): Boolean {
|
fun interceptUrl(context: Context, url: String, entrance: String): Boolean {
|
||||||
return interceptUrl(context, url, null, entrance, false, sourceEntrance)
|
return interceptUrl(context, url, entrance, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 检查并拦截部分内部处理的 url
|
|
||||||
* @param traceEvent 供一些页面用于登记曝光来源的实体
|
|
||||||
* @param bringAppToFront 是否需要在不匹配 host 的时候把 APP 调回到前台 (如微信调起)
|
* @param bringAppToFront 是否需要在不匹配 host 的时候把 APP 调回到前台 (如微信调起)
|
||||||
*
|
|
||||||
* @return 是否已拦截处理
|
|
||||||
*/
|
*/
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun interceptUrl(context: Context, url: String,
|
fun interceptUrl(context: Context, url: String, entrance: String, bringAppToFront: Boolean = false): Boolean {
|
||||||
traceEvent: ExposureEvent? = null,
|
|
||||||
entrance: String,
|
|
||||||
bringAppToFront: Boolean = false,
|
|
||||||
sourceEntrance: String = ""): Boolean {
|
|
||||||
val uri = Uri.parse(url)
|
val uri = Uri.parse(url)
|
||||||
if ("ghzhushou" == uri.scheme) {
|
if ("ghzhushou" == uri.scheme) {
|
||||||
Utils.log("url = $url")
|
Utils.log("url = $url")
|
||||||
@ -88,7 +71,6 @@ object DefaultUrlHandler {
|
|||||||
id = id,
|
id = id,
|
||||||
tab = uri.getQueryParameter("to"),
|
tab = uri.getQueryParameter("to"),
|
||||||
autoDownload = uri.getQueryParameter("auto_download") == "true",
|
autoDownload = uri.getQueryParameter("auto_download") == "true",
|
||||||
traceEvent = traceEvent,
|
|
||||||
entrance = entrance
|
entrance = entrance
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -97,7 +79,6 @@ object DefaultUrlHandler {
|
|||||||
id,
|
id,
|
||||||
uri.getQueryParameter("name"),
|
uri.getQueryParameter("name"),
|
||||||
false,
|
false,
|
||||||
null,
|
|
||||||
entrance
|
entrance
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -133,7 +114,7 @@ object DefaultUrlHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
"question" -> DirectUtils.directToQuestionDetail(context, id, entrance, "文章链接", sourceEntrance)
|
"question" -> DirectUtils.directToQuestionDetail(context, id, entrance, "文章链接")
|
||||||
|
|
||||||
"real_name" -> DirectUtils.directToRealName(context)
|
"real_name" -> DirectUtils.directToRealName(context)
|
||||||
|
|
||||||
@ -176,7 +157,7 @@ object DefaultUrlHandler {
|
|||||||
if ("articles" == type) {
|
if ("articles" == type) {
|
||||||
DirectUtils.directToCommunityArticle(
|
DirectUtils.directToCommunityArticle(
|
||||||
context, typeId, communityId,
|
context, typeId, communityId,
|
||||||
entrance, "文章链接", sourceEntrance
|
entrance, "文章链接"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -204,12 +185,10 @@ object DefaultUrlHandler {
|
|||||||
EntranceConsts.HOST_USERHOME -> {
|
EntranceConsts.HOST_USERHOME -> {
|
||||||
val position = uri.getQueryParameter("position")
|
val position = uri.getQueryParameter("position")
|
||||||
val subtype = uri.getQueryParameter("sub_type") ?: ""
|
val subtype = uri.getQueryParameter("sub_type") ?: ""
|
||||||
val subGameType = uri.getQueryParameter("sub_game_type") ?: "game_collection"
|
|
||||||
DirectUtils.directToHomeActivity(
|
DirectUtils.directToHomeActivity(
|
||||||
context,
|
context,
|
||||||
id,
|
id,
|
||||||
subtype,
|
subtype,
|
||||||
subGameType,
|
|
||||||
if (position.isNullOrEmpty()) -1 else position.toInt(),
|
if (position.isNullOrEmpty()) -1 else position.toInt(),
|
||||||
entrance,
|
entrance,
|
||||||
""
|
""
|
||||||
@ -244,22 +223,24 @@ object DefaultUrlHandler {
|
|||||||
act,
|
act,
|
||||||
paginationType,
|
paginationType,
|
||||||
fieldId,
|
fieldId,
|
||||||
sectionName,
|
sectionName
|
||||||
sourceEntrance = sourceEntrance
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
EntranceConsts.HOST_VIDEO_DETAIL -> {
|
EntranceConsts.HOST_VIDEO_DETAIL -> {
|
||||||
DirectUtils.directToVideoDetail(context, id, entrance, path, sourceEntrance)
|
DirectUtils.directToVideoDetail(context, id, entrance, path)
|
||||||
}
|
}
|
||||||
EntranceConsts.HOST_VIDEO_SINGLE -> {
|
EntranceConsts.HOST_VIDEO_SINGLE -> {
|
||||||
val referer = uri.getQueryParameter("referer") ?: ""
|
val referer = uri.getQueryParameter("referer") ?: ""
|
||||||
DirectUtils.directToVideoDetail(
|
DirectUtils.directToVideoDetail(
|
||||||
context, id, VideoDetailContainerViewModel.Location.SINGLE_VIDEO.value,
|
context, id, VideoDetailContainerViewModel.Location.SINGLE_VIDEO.value,
|
||||||
false, "", entrance, "", if (TextUtils.isEmpty(referer)) "" else referer, sourceEntrance
|
false, "", entrance, "", if (TextUtils.isEmpty(referer)) "" else referer
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
EntranceConsts.HOST_VIDEO_STREAMING_HOME -> {
|
EntranceConsts.HOST_VIDEO_STREAMING_HOME -> {
|
||||||
DirectUtils.directToHomeVideoTab(context)
|
intent = Intent(context, MainActivity::class.java)
|
||||||
|
intent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP
|
||||||
|
intent.putExtra(MainActivity.SWITCH_TO_VIDEO, true)
|
||||||
|
context.startActivity(intent)
|
||||||
}
|
}
|
||||||
EntranceConsts.HOST_VIDEO_STREAMING_DESC -> {
|
EntranceConsts.HOST_VIDEO_STREAMING_DESC -> {
|
||||||
directToGameDetailVideoStreaming(context, id, entrance)
|
directToGameDetailVideoStreaming(context, id, entrance)
|
||||||
@ -279,6 +260,21 @@ object DefaultUrlHandler {
|
|||||||
EntranceConsts.HOST_COLUMN -> {
|
EntranceConsts.HOST_COLUMN -> {
|
||||||
DirectUtils.directToSubject(context, id, uri.getQueryParameter(EntranceConsts.KEY_NAME), entrance)
|
DirectUtils.directToSubject(context, id, uri.getQueryParameter(EntranceConsts.KEY_NAME), entrance)
|
||||||
}
|
}
|
||||||
|
EntranceConsts.HOST_COMMUNITY_QUESTION_LABEL_DETAIL -> {
|
||||||
|
val community = CommunityEntity()
|
||||||
|
community.id = uri.getQueryParameter("community_id") ?: ""
|
||||||
|
community.name = uri.getQueryParameter("community_name") ?: ""
|
||||||
|
val tag = uri.getQueryParameter("tag") ?: ""
|
||||||
|
DirectUtils.directAskColumnLabelDetail(context, tag, community, entrance, "")
|
||||||
|
}
|
||||||
|
EntranceConsts.HOST_COMMUNITY_COLUMN_DETAIL -> {
|
||||||
|
val community = CommunityEntity()
|
||||||
|
community.id = uri.getQueryParameter("community_id") ?: ""
|
||||||
|
community.name = uri.getQueryParameter("community_name") ?: ""
|
||||||
|
val columnId = uri.getQueryParameter("column_id") ?: ""
|
||||||
|
DirectUtils.directAskColumnDetail(context, columnId, community, entrance, "")
|
||||||
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_BLOCK -> {
|
EntranceConsts.HOST_BLOCK -> {
|
||||||
val name = uri.getQueryParameter("name")
|
val name = uri.getQueryParameter("name")
|
||||||
?: ""
|
?: ""
|
||||||
@ -321,7 +317,7 @@ object DefaultUrlHandler {
|
|||||||
val linkData = Base64.decode(dataString, Base64.DEFAULT)
|
val linkData = Base64.decode(dataString, Base64.DEFAULT)
|
||||||
val linkDataString = String(linkData, Charset.defaultCharset())
|
val linkDataString = String(linkData, Charset.defaultCharset())
|
||||||
val le = gson.fromJson(linkDataString, LinkEntity::class.java)
|
val le = gson.fromJson(linkDataString, LinkEntity::class.java)
|
||||||
directToLinkPage(context, le, entrance, sourceEntrance, "")
|
directToLinkPage(context, le, entrance, "")
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
@ -346,8 +342,7 @@ object DefaultUrlHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_FORUM_DETAIL -> {
|
EntranceConsts.HOST_FORUM_DETAIL -> {
|
||||||
val sectionId = uri.getQueryParameter("section_id") ?: ""
|
DirectUtils.directForumDetail(context, id, entrance)
|
||||||
DirectUtils.directForumDetailSection(context, id, sectionId, entrance)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_GAME_RATING_DETAIL -> {
|
EntranceConsts.HOST_GAME_RATING_DETAIL -> {
|
||||||
@ -360,8 +355,9 @@ object DefaultUrlHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_FORUM -> {
|
EntranceConsts.HOST_FORUM -> {
|
||||||
|
val position = uri.getQueryParameter(EntranceConsts.KEY_POSITION)?.toInt()
|
||||||
|
|
||||||
DirectUtils.directToHomeCommunityTab(context)
|
DirectUtils.directToForum(context, position ?: 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_UPLOAD_VIDEO_NEW -> {
|
EntranceConsts.HOST_UPLOAD_VIDEO_NEW -> {
|
||||||
@ -414,11 +410,10 @@ object DefaultUrlHandler {
|
|||||||
val packageMd5 = uri.getQueryParameter(EntranceConsts.KEY_PACKAGE_MD5)
|
val packageMd5 = uri.getQueryParameter(EntranceConsts.KEY_PACKAGE_MD5)
|
||||||
val isQaFeedback = uri.getQueryParameter(EntranceConsts.KEY_IS_QA_FEEDBACK) == "true"
|
val isQaFeedback = uri.getQueryParameter(EntranceConsts.KEY_IS_QA_FEEDBACK) == "true"
|
||||||
val content = if (TextUtils.isEmpty(gameId) || TextUtils.isEmpty(packageMd5)) String.format(
|
val content = if (TextUtils.isEmpty(gameId) || TextUtils.isEmpty(packageMd5)) String.format(
|
||||||
"%s—V%s—%s(V%s),",
|
"%s-%s-V%s,",
|
||||||
uri.getQueryParameter(EntranceConsts.KEY_GAME_NAME),
|
uri.getQueryParameter(EntranceConsts.KEY_GAME_NAME),
|
||||||
uri.getQueryParameter(EntranceConsts.KEY_VERSION),
|
|
||||||
if (TextUtils.isEmpty(platformName)) platform else platformName,
|
if (TextUtils.isEmpty(platformName)) platform else platformName,
|
||||||
uri.getQueryParameter(EntranceConsts.KEY_PLATFORM_VERSION),
|
uri.getQueryParameter(EntranceConsts.KEY_VERSION)
|
||||||
) else String.format(
|
) else String.format(
|
||||||
"%s-%s-V%s\n游戏ID:%s\n游戏包MD5:%s\n",
|
"%s-%s-V%s\n游戏ID:%s\n游戏包MD5:%s\n",
|
||||||
uri.getQueryParameter(EntranceConsts.KEY_GAME_NAME),
|
uri.getQueryParameter(EntranceConsts.KEY_GAME_NAME),
|
||||||
@ -434,17 +429,17 @@ object DefaultUrlHandler {
|
|||||||
directToFeedback(
|
directToFeedback(
|
||||||
context,
|
context,
|
||||||
content,
|
content,
|
||||||
|
null,
|
||||||
isQaFeedback,
|
isQaFeedback,
|
||||||
qaContentId,
|
qaContentId,
|
||||||
isPlugin = false,
|
|
||||||
isSmoothGame = false,
|
|
||||||
EntranceConsts.ENTRANCE_BROWSER
|
EntranceConsts.ENTRANCE_BROWSER
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_HELP_AND_FEEDBACK -> {
|
EntranceConsts.HOST_HELP_AND_FEEDBACK -> {
|
||||||
DirectUtils.directToHelpAndFeedback(context)
|
val position = uri.getQueryParameter("position") ?: ""
|
||||||
|
DirectUtils.directToHelpAndFeedback(context, position.toInt())
|
||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_HELP_DETAIL -> {
|
EntranceConsts.HOST_HELP_DETAIL -> {
|
||||||
@ -473,7 +468,7 @@ object DefaultUrlHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_GAME_COLLECTION_DETAIL -> {
|
EntranceConsts.HOST_GAME_COLLECTION_DETAIL -> {
|
||||||
DirectUtils.directToGameCollectionDetail(context, id, entrance, traceEvent = traceEvent)
|
DirectUtils.directToGameCollectionDetail(context, id, entrance)
|
||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_GAME_COLLECTION_SQUARE -> {
|
EntranceConsts.HOST_GAME_COLLECTION_SQUARE -> {
|
||||||
@ -485,27 +480,16 @@ object DefaultUrlHandler {
|
|||||||
val activityName = uri.getQueryParameter("activity_name") ?: ""
|
val activityName = uri.getQueryParameter("activity_name") ?: ""
|
||||||
val gameId = uri.getQueryParameter("game_id") ?: ""
|
val gameId = uri.getQueryParameter("game_id") ?: ""
|
||||||
context.startActivity(
|
context.startActivity(
|
||||||
GameCollectionEditActivity.getCreateIntent(
|
GameCollectionEditActivity.getIntent(
|
||||||
context,
|
context,
|
||||||
activityId,
|
activityId,
|
||||||
activityName,
|
activityName,
|
||||||
gameId,
|
gameId,
|
||||||
entrance,
|
entrance
|
||||||
"其他"
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
EntranceConsts.HOST_GAME_LIBRARY -> {
|
|
||||||
DirectUtils.directToMainActivity(context)
|
|
||||||
}
|
|
||||||
|
|
||||||
EntranceConsts.HOST_HOME_GAME_COLLECTION_SQUARE -> {
|
|
||||||
DirectUtils.directToMainActivity(context)
|
|
||||||
DirectUtils.directToHomeDefaultTab(context)
|
|
||||||
EventBus.getDefault().post(EBReuse(host))
|
|
||||||
}
|
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
if (bringAppToFront) {
|
if (bringAppToFront) {
|
||||||
DirectUtils.directToMainActivity(context)
|
DirectUtils.directToMainActivity(context)
|
||||||
@ -557,7 +541,7 @@ object DefaultUrlHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 处理内部页面逻辑
|
// 处理内部页面逻辑
|
||||||
if (transformNormalScheme(context, url, entrance, sourceEntrance)) {
|
if (transformNormalScheme(context, url, entrance)) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -566,14 +550,14 @@ object DefaultUrlHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun transformNormalScheme(context: Context, url: String, entrance: String, sourceEntrance: String): Boolean {
|
fun transformNormalScheme(context: Context, url: String, entrance: String): Boolean {
|
||||||
val b = transformNewNormalScheme(context, url, entrance, sourceEntrance)
|
val b = transformNewNormalScheme(context, url, entrance)
|
||||||
if (b) return b
|
if (b) return b
|
||||||
return transformOldNormalScheme(context, url, entrance, sourceEntrance)
|
return transformOldNormalScheme(context, url, entrance)
|
||||||
}
|
}
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun transformOldNormalScheme(context: Context, url: String, entrance: String, sourceEntrance: String): Boolean {
|
fun transformOldNormalScheme(context: Context, url: String, entrance: String): Boolean {
|
||||||
val uri = Uri.parse(url)
|
val uri = Uri.parse(url)
|
||||||
if (uri.host == "www.ghzs666.com"
|
if (uri.host == "www.ghzs666.com"
|
||||||
|| uri.host == "www.ghzs.com"
|
|| uri.host == "www.ghzs.com"
|
||||||
@ -589,7 +573,6 @@ object DefaultUrlHandler {
|
|||||||
DirectUtils.directToGameDetail(
|
DirectUtils.directToGameDetail(
|
||||||
context,
|
context,
|
||||||
gameId,
|
gameId,
|
||||||
"",
|
|
||||||
entrance,
|
entrance,
|
||||||
autoDownload = false,
|
autoDownload = false,
|
||||||
traceEvent = null
|
traceEvent = null
|
||||||
@ -599,7 +582,7 @@ object DefaultUrlHandler {
|
|||||||
val questionId = split("/")[2]
|
val questionId = split("/")[2]
|
||||||
val answerId = uri.getQueryParameter("answer")
|
val answerId = uri.getQueryParameter("answer")
|
||||||
if (answerId.isNullOrEmpty()) {
|
if (answerId.isNullOrEmpty()) {
|
||||||
DirectUtils.directToQuestionDetail(context, questionId, entrance, "", sourceEntrance)
|
DirectUtils.directToQuestionDetail(context, questionId, entrance, "")
|
||||||
} else {
|
} else {
|
||||||
DirectUtils.directToAnswerDetail(context, answerId, entrance, "")
|
DirectUtils.directToAnswerDetail(context, answerId, entrance, "")
|
||||||
}
|
}
|
||||||
@ -629,7 +612,7 @@ object DefaultUrlHandler {
|
|||||||
if ("articles" == type || "article" == type) {
|
if ("articles" == type || "article" == type) {
|
||||||
DirectUtils.directToCommunityArticle(
|
DirectUtils.directToCommunityArticle(
|
||||||
context, typeId, communityId,
|
context, typeId, communityId,
|
||||||
entrance, "文章链接", sourceEntrance
|
entrance, "文章链接"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -660,7 +643,7 @@ object DefaultUrlHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun transformNewNormalScheme(context: Context, url: String, entrance: String, sourceEntrance: String): Boolean {
|
fun transformNewNormalScheme(context: Context, url: String, entrance: String): Boolean {
|
||||||
val uri = Uri.parse(url)
|
val uri = Uri.parse(url)
|
||||||
if (uri.host == "www.ghzs666.com"
|
if (uri.host == "www.ghzs666.com"
|
||||||
|| uri.host == "www.ghzs.com"
|
|| uri.host == "www.ghzs.com"
|
||||||
@ -678,7 +661,7 @@ object DefaultUrlHandler {
|
|||||||
val articleId = splits[2].substring(7)
|
val articleId = splits[2].substring(7)
|
||||||
DirectUtils.directToCommunityArticle(
|
DirectUtils.directToCommunityArticle(
|
||||||
context, articleId, "",
|
context, articleId, "",
|
||||||
entrance, "文章链接", sourceEntrance
|
entrance, "文章链接"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
//https://m.ghzs666.com/article/文章ID
|
//https://m.ghzs666.com/article/文章ID
|
||||||
@ -698,7 +681,7 @@ object DefaultUrlHandler {
|
|||||||
//https://m.ghzs666.com/bbs/video-视频ID
|
//https://m.ghzs666.com/bbs/video-视频ID
|
||||||
splits.size >= 3 && splits[1] == "bbs" && splits[2].startsWith("video-") -> {
|
splits.size >= 3 && splits[1] == "bbs" && splits[2].startsWith("video-") -> {
|
||||||
val videoId = splits[2].substring(6)
|
val videoId = splits[2].substring(6)
|
||||||
DirectUtils.directToVideoDetail(context, videoId, entrance, sourceEntrance)
|
DirectUtils.directToVideoDetail(context, videoId, entrance)
|
||||||
}
|
}
|
||||||
else -> return false
|
else -> return false
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,25 +2,25 @@ package com.gh.common
|
|||||||
|
|
||||||
import com.gh.common.exposure.ExposureManager
|
import com.gh.common.exposure.ExposureManager
|
||||||
import com.gh.common.filter.RegionSettingHelper
|
import com.gh.common.filter.RegionSettingHelper
|
||||||
|
import com.gh.gamecenter.common.loghub.LoghubUtils
|
||||||
|
import com.gh.gamecenter.common.utils.doOnMainProcessOnly
|
||||||
|
import com.gh.gamecenter.common.utils.tryCatchInRelease
|
||||||
import com.gh.common.videolog.VideoRecordUtils
|
import com.gh.common.videolog.VideoRecordUtils
|
||||||
import com.gh.download.DownloadDataHelper
|
import com.gh.download.DownloadDataHelper
|
||||||
import com.gh.gamecenter.common.loghub.LoghubUtils
|
|
||||||
import com.gh.gamecenter.common.retrofit.Response
|
|
||||||
import com.gh.gamecenter.common.utils.tryCatchInRelease
|
|
||||||
import com.gh.gamecenter.core.runOnUiThread
|
|
||||||
import com.gh.gamecenter.entity.TimeEntity
|
import com.gh.gamecenter.entity.TimeEntity
|
||||||
|
import com.gh.gamecenter.common.retrofit.Response
|
||||||
|
import com.gh.gamecenter.core.runOnUiThread
|
||||||
import com.gh.gamecenter.retrofit.RetrofitManager
|
import com.gh.gamecenter.retrofit.RetrofitManager
|
||||||
import com.halo.assistant.HaloApp
|
import com.halo.assistant.HaloApp
|
||||||
import com.lightgame.utils.Utils
|
|
||||||
import io.reactivex.schedulers.Schedulers
|
import io.reactivex.schedulers.Schedulers
|
||||||
import kotlin.concurrent.fixedRateTimer
|
import kotlin.concurrent.fixedRateTimer
|
||||||
|
|
||||||
object FixedRateJobHelper {
|
object FixedRateJobHelper {
|
||||||
private const val CHECKER_PERIOD: Long = 15 * 1000L
|
private const val CHECKER_PERIOD: Long = 15 * 1000L
|
||||||
private const val TIME_PERIOD: Long = 10 * 60 * 1000L
|
private const val TIME_PERIOD: Long = 600 * 1000L
|
||||||
private const val LOGHUB_PERIOD: Long = 2 * 60 * 1000L
|
private const val LOGHUB_PERIOD: Long = 120 * 1000L
|
||||||
private const val EXPOSURE_PERIOD: Long = 1 * 60 * 1000L
|
private const val EXPOSURE_PERIOD: Long = 300 * 1000L
|
||||||
private const val REGION_SETTING_PERIOD: Long = 60 * 1000L
|
private const val REGION_SETTING_PERIOD: Long = 300 * 1000L
|
||||||
private const val VIDEO_RECORD_PERIOD: Long = 60 * 1000L
|
private const val VIDEO_RECORD_PERIOD: Long = 60 * 1000L
|
||||||
|
|
||||||
private const val DOWNLOAD_HEARTBEAT_PERIOD: Long = 60 * 1000L
|
private const val DOWNLOAD_HEARTBEAT_PERIOD: Long = 60 * 1000L
|
||||||
@ -32,56 +32,59 @@ object FixedRateJobHelper {
|
|||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun begin() {
|
fun begin() {
|
||||||
// 时间检查,每15秒检查一次
|
doOnMainProcessOnly {
|
||||||
fixedRateTimer("Global-Fixed-Rate-Timer", initialDelay = 100, period = CHECKER_PERIOD) {
|
fixedRateTimer("Global-Fixed-Rate-Timer", initialDelay = 100, period = CHECKER_PERIOD) {
|
||||||
val elapsedTime = mExecuteCount * CHECKER_PERIOD
|
// 时间校对,10分钟一次
|
||||||
// 时间校对,10分钟一次
|
if ((mExecuteCount * CHECKER_PERIOD) % TIME_PERIOD == 0L) {
|
||||||
if (elapsedTime % TIME_PERIOD == 0L) {
|
RetrofitManager.getInstance().api.time
|
||||||
RetrofitManager.getInstance().api.time
|
.subscribeOn(Schedulers.io())
|
||||||
.subscribeOn(Schedulers.io())
|
.subscribe(object : Response<TimeEntity>() {
|
||||||
.subscribe(object : Response<TimeEntity>() {
|
override fun onResponse(response: TimeEntity?) {
|
||||||
override fun onResponse(response: TimeEntity?) {
|
val serverTime = response?.time
|
||||||
val serverTime = response?.time
|
serverTime?.let {
|
||||||
serverTime?.let {
|
timeDeltaBetweenServerAndClient = it * 1000 - System.currentTimeMillis()
|
||||||
timeDeltaBetweenServerAndClient = it * 1000 - System.currentTimeMillis()
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 提交曝光数据
|
|
||||||
if (elapsedTime % EXPOSURE_PERIOD == 0L) {
|
|
||||||
ExposureManager.commitSavedExposureEvents(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
// 分片检测下载进度
|
|
||||||
if (elapsedTime % DOWNLOAD_HEARTBEAT_SHEET_PERIOD == 0L) {
|
|
||||||
tryCatchInRelease {
|
|
||||||
val upload = (mExecuteCount * CHECKER_PERIOD) % DOWNLOAD_HEARTBEAT_PERIOD == 0L
|
|
||||||
DownloadDataHelper.uploadDownloadHeartbeat(upload)
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// 提交普通 loghub 数据
|
// 提交曝光数据
|
||||||
if (elapsedTime % LOGHUB_PERIOD == 0L) {
|
if ((mExecuteCount * CHECKER_PERIOD) % EXPOSURE_PERIOD == 0L) {
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
LoghubUtils.commitSavedLoghubEvents(true)
|
ExposureManager.commitSavedExposureEvents(true)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// 更新游戏屏蔽信息
|
// 分片检测下载进度
|
||||||
if (elapsedTime % REGION_SETTING_PERIOD == 0L) {
|
if ((mExecuteCount * CHECKER_PERIOD) % DOWNLOAD_HEARTBEAT_SHEET_PERIOD == 0L) {
|
||||||
if (HaloApp.getInstance().isRunningForeground) {
|
tryCatchInRelease {
|
||||||
RegionSettingHelper.getRegionSetting()
|
val upload = (mExecuteCount * CHECKER_PERIOD) % DOWNLOAD_HEARTBEAT_PERIOD == 0L
|
||||||
|
DownloadDataHelper.uploadDownloadHeartbeat(upload)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// 提交视频浏览记录数据
|
// 提交普通 loghub 数据
|
||||||
if (elapsedTime % VIDEO_RECORD_PERIOD == 0L) {
|
if ((mExecuteCount * CHECKER_PERIOD) % LOGHUB_PERIOD == 0L) {
|
||||||
VideoRecordUtils.commitVideoRecord()
|
runOnUiThread {
|
||||||
}
|
LoghubUtils.commitSavedLoghubEvents(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mExecuteCount++
|
// 更新游戏屏蔽信息
|
||||||
|
if ((mExecuteCount * CHECKER_PERIOD) % REGION_SETTING_PERIOD == 0L) {
|
||||||
|
if (HaloApp.getInstance().isRunningForeground) {
|
||||||
|
RegionSettingHelper.getRegionSetting()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 提交视频浏览记录数据
|
||||||
|
if ((mExecuteCount * CHECKER_PERIOD) % VIDEO_RECORD_PERIOD == 0L) {
|
||||||
|
VideoRecordUtils.commitVideoRecord()
|
||||||
|
}
|
||||||
|
|
||||||
|
// ExposureUtils.logADownloadCompleteExposureEvent(GameEntity(id = mExecuteCount.toString(), name = "测试曝光上传"), platform = "", trace = null, downloadType = ExposureUtils.DownloadType.DOWNLOAD)
|
||||||
|
mExecuteCount++
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1,351 +0,0 @@
|
|||||||
package com.gh.common.browse
|
|
||||||
|
|
||||||
import android.os.Handler
|
|
||||||
import android.os.Looper
|
|
||||||
import android.os.Message
|
|
||||||
import androidx.lifecycle.*
|
|
||||||
import androidx.lifecycle.Lifecycle.Event
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 浏览时长计时器核心接口类,用于页面浏览时长相关埋点上报
|
|
||||||
*/
|
|
||||||
interface IBrowseTimerCore {
|
|
||||||
/**
|
|
||||||
* 开始计时
|
|
||||||
*/
|
|
||||||
fun start()
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 结束计时
|
|
||||||
*/
|
|
||||||
fun stop()
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 浏览时长计时器核心实现类
|
|
||||||
*/
|
|
||||||
class BrowseTimerCore internal constructor() : IBrowseTimerCore {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 延迟执行的时间
|
|
||||||
*/
|
|
||||||
var delayInMills: Long = 3000L
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 开始计时函数回调
|
|
||||||
*/
|
|
||||||
var onStart: (() -> Unit)? = null
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 结束计时函数回调
|
|
||||||
*/
|
|
||||||
var onResult: ((Long) -> Unit)? = null
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 开始计时的时间点
|
|
||||||
*/
|
|
||||||
private var startTimeInMills: Long = 0L
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handler操作类
|
|
||||||
*/
|
|
||||||
private val handler = object : Handler(Looper.getMainLooper()) {
|
|
||||||
override fun handleMessage(msg: Message) {
|
|
||||||
if (msg.what == MESSAGE_START) {
|
|
||||||
dispatchOnStart()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 延迟执行开始计时
|
|
||||||
* @see delayInMills
|
|
||||||
* @see onStart
|
|
||||||
*/
|
|
||||||
override fun start() {
|
|
||||||
if (delayInMills <= 0) {
|
|
||||||
dispatchOnStart()
|
|
||||||
} else {
|
|
||||||
handler.sendEmptyMessageDelayed(MESSAGE_START, delayInMills)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 结束计时,统计浏览时长并回调结束计时函数
|
|
||||||
* @see onResult
|
|
||||||
*/
|
|
||||||
override fun stop() {
|
|
||||||
handler.removeMessages(MESSAGE_START)
|
|
||||||
if (startTimeInMills > 0L) {
|
|
||||||
onResult?.invoke(System.currentTimeMillis() - startTimeInMills)
|
|
||||||
startTimeInMills = 0L
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 开始计时,回调开始计时函数
|
|
||||||
*/
|
|
||||||
private fun dispatchOnStart() {
|
|
||||||
startTimeInMills = System.currentTimeMillis()
|
|
||||||
onStart?.invoke()
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
private const val MESSAGE_START = 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 无数据浏览计时器接口类
|
|
||||||
*/
|
|
||||||
interface IBrowseTimer : IBrowseTimerCore {
|
|
||||||
|
|
||||||
fun withDelayInMills(delayInMills: Long): IBrowseTimer
|
|
||||||
|
|
||||||
fun withStart(onStart: () -> Unit): IBrowseTimer
|
|
||||||
|
|
||||||
fun withResult(onResult: (Long) -> Unit): IBrowseTimer
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 无数据的浏览计时器实现类
|
|
||||||
*/
|
|
||||||
class BrowseTimer : IBrowseTimer {
|
|
||||||
|
|
||||||
private val core = BrowseTimerCore()
|
|
||||||
|
|
||||||
private var isStarted: Boolean = false
|
|
||||||
|
|
||||||
override fun withDelayInMills(delayInMills: Long): IBrowseTimer {
|
|
||||||
core.delayInMills = delayInMills
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withStart(onStart: () -> Unit): IBrowseTimer {
|
|
||||||
core.onStart = onStart
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withResult(onResult: (Long) -> Unit): IBrowseTimer {
|
|
||||||
core.onResult = onResult
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun start() {
|
|
||||||
if (isStarted) return
|
|
||||||
|
|
||||||
isStarted = true
|
|
||||||
core.start()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun stop() {
|
|
||||||
if (!isStarted) return
|
|
||||||
|
|
||||||
core.stop()
|
|
||||||
isStarted = false
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 支持Lifecycle的无数据的浏览计时器
|
|
||||||
*/
|
|
||||||
class LifecycleBoundBrowseTimer internal constructor(
|
|
||||||
private val base: IBrowseTimer,
|
|
||||||
private val onStateChanged: (IBrowseTimer, Event) -> Unit
|
|
||||||
) : IBrowseTimer, LifecycleEventObserver {
|
|
||||||
override fun withDelayInMills(delayInMills: Long): IBrowseTimer {
|
|
||||||
return base.withDelayInMills(delayInMills)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withStart(onStart: () -> Unit): IBrowseTimer {
|
|
||||||
return base.withStart(onStart)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withResult(onResult: (Long) -> Unit): IBrowseTimer {
|
|
||||||
return base.withResult(onResult)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun start() {
|
|
||||||
base.start()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun stop() {
|
|
||||||
base.stop()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onStateChanged(source: LifecycleOwner, event: Event) {
|
|
||||||
onStateChanged.invoke(this, event)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
fun IBrowseTimer.withLifecycle(
|
|
||||||
owner: LifecycleOwner,
|
|
||||||
onStateChanged: (IBrowseTimer, Event) -> Unit = { timer, event ->
|
|
||||||
when(event) {
|
|
||||||
Event.ON_START -> timer.start()
|
|
||||||
Event.ON_STOP -> timer.stop()
|
|
||||||
else -> {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
): LifecycleBoundBrowseTimer = LifecycleBoundBrowseTimer(this, onStateChanged).apply {
|
|
||||||
owner.lifecycle.addObserver(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 带数据的浏览计时器接口类
|
|
||||||
*/
|
|
||||||
interface IValueBrowseTimer<T> : IBrowseTimerCore {
|
|
||||||
|
|
||||||
fun withDelayInMills(delayInMills: Long): IValueBrowseTimer<T>
|
|
||||||
|
|
||||||
fun withStart(onStart: (T?) -> Unit): IValueBrowseTimer<T>
|
|
||||||
|
|
||||||
fun withResult(onResult: (T?, Long) -> Unit): IValueBrowseTimer<T>
|
|
||||||
|
|
||||||
fun dispatchValue(value: T?)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 带数据的浏览计时器实现类
|
|
||||||
*/
|
|
||||||
class ValueBrowseTimer<T> : IValueBrowseTimer<T> {
|
|
||||||
|
|
||||||
private val core = BrowseTimerCore()
|
|
||||||
|
|
||||||
private var isDispatchValue: Boolean = false
|
|
||||||
|
|
||||||
private var isStarted: Boolean = false
|
|
||||||
|
|
||||||
private var value: T? = null
|
|
||||||
|
|
||||||
override fun withDelayInMills(delayInMills: Long): IValueBrowseTimer<T> {
|
|
||||||
core.delayInMills = delayInMills
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withStart(onStart: (T?) -> Unit): IValueBrowseTimer<T> {
|
|
||||||
core.onStart = { onStart.invoke(value) }
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withResult(onResult: (T?, Long) -> Unit): IValueBrowseTimer<T> {
|
|
||||||
core.onResult = { onResult.invoke(value, it) }
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun start() {
|
|
||||||
if (isStarted) return
|
|
||||||
|
|
||||||
isStarted = true
|
|
||||||
|
|
||||||
if (isDispatchValue) {
|
|
||||||
core.start()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun stop() {
|
|
||||||
if (!isStarted) return
|
|
||||||
|
|
||||||
core.stop()
|
|
||||||
isStarted = false
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun dispatchValue(value: T?) {
|
|
||||||
this.value = value
|
|
||||||
|
|
||||||
if (isStarted && !isDispatchValue) {
|
|
||||||
core.start()
|
|
||||||
}
|
|
||||||
isDispatchValue = true
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 支持LiveData的带数据的浏览计时器
|
|
||||||
*/
|
|
||||||
class ObserverBoundValueBrowseTimer<T> internal constructor(private val base: IValueBrowseTimer<T>) : IValueBrowseTimer<T>, Observer<T> {
|
|
||||||
override fun withDelayInMills(delayInMills: Long): IValueBrowseTimer<T> {
|
|
||||||
return base.withDelayInMills(delayInMills)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withResult(onResult: (T?, Long) -> Unit): IValueBrowseTimer<T> {
|
|
||||||
return base.withResult(onResult)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withStart(onStart: (T?) -> Unit): IValueBrowseTimer<T> {
|
|
||||||
return base.withStart(onStart)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun start() {
|
|
||||||
base.start()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun stop() {
|
|
||||||
base.stop()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun dispatchValue(value: T?) {
|
|
||||||
base.dispatchValue(value)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onChanged(t: T) {
|
|
||||||
dispatchValue(t)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 支持Lifecycle的带数据的浏览计时器
|
|
||||||
*/
|
|
||||||
class LifecycleBoundValueBrowseTimer<T> internal constructor(
|
|
||||||
private val base: IValueBrowseTimer<T>,
|
|
||||||
private val onStateChanged: (IValueBrowseTimer<T>, Event) -> Unit
|
|
||||||
) : IValueBrowseTimer<T>, LifecycleEventObserver {
|
|
||||||
override fun withDelayInMills(delayInMills: Long): IValueBrowseTimer<T> {
|
|
||||||
return base.withDelayInMills(delayInMills)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withResult(onResult: (T?, Long) -> Unit): IValueBrowseTimer<T> {
|
|
||||||
return base.withResult(onResult)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun withStart(onStart: (T?) -> Unit): IValueBrowseTimer<T> {
|
|
||||||
return base.withStart(onStart)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun start() {
|
|
||||||
base.start()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun stop() {
|
|
||||||
base.stop()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun dispatchValue(value: T?) {
|
|
||||||
base.dispatchValue(value)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onStateChanged(source: LifecycleOwner, event: Event) {
|
|
||||||
onStateChanged.invoke(this, event)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
fun <T> IValueBrowseTimer<T>.asObserver(): ObserverBoundValueBrowseTimer<T> = ObserverBoundValueBrowseTimer(this)
|
|
||||||
|
|
||||||
fun <T> IValueBrowseTimer<T>.withLifecycle(
|
|
||||||
owner: LifecycleOwner,
|
|
||||||
onStateChanged: (IValueBrowseTimer<T>, Event) -> Unit = { timer, event ->
|
|
||||||
when(event) {
|
|
||||||
Event.ON_START -> timer.start()
|
|
||||||
Event.ON_STOP -> timer.stop()
|
|
||||||
else -> {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
): LifecycleBoundValueBrowseTimer<T> = LifecycleBoundValueBrowseTimer(this, onStateChanged).apply {
|
|
||||||
owner.lifecycle.addObserver(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
@ -2,21 +2,20 @@ package com.gh.common.chain
|
|||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.gh.download.server.BrowserInstallHelper
|
import com.gh.download.server.BrowserInstallHelper
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.core.utils.EmptyCallback
|
||||||
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
class BrowserInstallHandler : DownloadChainHandler() {
|
class BrowserInstallHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
BrowserInstallHelper.showBrowserInstallHintDialog(
|
BrowserInstallHelper.showBrowserInstallHintDialog(context, gameEntity.isVGame(), object : EmptyCallback {
|
||||||
context,
|
override fun onCallback() {
|
||||||
gameEntity,
|
if (hasNext()) {
|
||||||
asVGame || gameEntity.isSplitXApk()
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
) {
|
} else {
|
||||||
if (hasNext()) {
|
processEndCallback?.invoke(null)
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
}
|
||||||
} else {
|
|
||||||
processEndCallback?.invoke(asVGame, null)
|
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
package com.gh.common.chain
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import com.gh.common.dialog.CertificationDialog
|
||||||
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
|
class CertificationHandler : ChainHandler() {
|
||||||
|
|
||||||
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
|
CertificationDialog.showCertificationDialog(context, gameEntity) {
|
||||||
|
if (hasNext()) {
|
||||||
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
|
} else {
|
||||||
|
processEndCallback?.invoke(null)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,22 +1,22 @@
|
|||||||
package com.gh.common.chain
|
package com.gh.common.chain
|
||||||
|
|
||||||
class DownloadChainBuilder {
|
class ChainBuilder {
|
||||||
|
|
||||||
private val handlers: MutableList<DownloadChainHandler> = ArrayList()
|
private val handlers: MutableList<ChainHandler> = ArrayList()
|
||||||
|
|
||||||
private var processEndCallback: ((asVGame: Boolean, Any?) -> Unit)? = null
|
private var processEndCallback: ((Any?) -> Unit)? = null
|
||||||
|
|
||||||
fun setProcessEndCallback(callback: (asVGame: Boolean, Any?) -> Unit): DownloadChainBuilder {
|
fun setProcessEndCallback(callback: (Any?) -> Unit): ChainBuilder {
|
||||||
processEndCallback = callback
|
processEndCallback = callback
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
fun addHandler(handler: DownloadChainHandler): DownloadChainBuilder {
|
fun addHandler(handler: ChainHandler): ChainBuilder {
|
||||||
handlers.add(handler)
|
handlers.add(handler)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
fun buildHandlerChain(): DownloadChainHandler? {
|
fun buildHandlerChain(): ChainHandler? {
|
||||||
for (i in handlers.indices) {
|
for (i in handlers.indices) {
|
||||||
handlers[i].processEndCallback = processEndCallback
|
handlers[i].processEndCallback = processEndCallback
|
||||||
if (i + 1 < handlers.size) {
|
if (i + 1 < handlers.size) {
|
||||||
24
app/src/main/java/com/gh/common/chain/ChainHandler.kt
Normal file
24
app/src/main/java/com/gh/common/chain/ChainHandler.kt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
package com.gh.common.chain
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
|
abstract class ChainHandler {
|
||||||
|
private var next: ChainHandler? = null
|
||||||
|
var processEndCallback: ((Any?) -> Unit)? = null
|
||||||
|
|
||||||
|
fun setNext(next: ChainHandler?) {
|
||||||
|
this.next = next
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getNext(): ChainHandler? {
|
||||||
|
return next
|
||||||
|
}
|
||||||
|
|
||||||
|
fun hasNext(): Boolean {
|
||||||
|
return next != null
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract fun handleRequest(context: Context, gameEntity: GameEntity)
|
||||||
|
|
||||||
|
}
|
||||||
@ -3,17 +3,17 @@ package com.gh.common.chain
|
|||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.gh.common.util.DialogUtils
|
import com.gh.common.util.DialogUtils
|
||||||
import com.gh.gamecenter.common.utils.safelyGetInRelease
|
import com.gh.gamecenter.common.utils.safelyGetInRelease
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
class CheckDownloadHandler : DownloadChainHandler() {
|
class CheckDownloadHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
val apk = gameEntity.getApk().safelyGetInRelease(0) ?: return
|
val apk = gameEntity.getApk().safelyGetInRelease(0) ?: return
|
||||||
DialogUtils.checkDownload(context, apk.size, gameEntity.id, gameEntity.name, gameEntity.categoryChinese) { isSubscribe: Boolean ->
|
DialogUtils.checkDownload(context, apk.size) { isSubscribe: Boolean ->
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
} else {
|
} else {
|
||||||
processEndCallback?.invoke(asVGame, isSubscribe)
|
processEndCallback?.invoke(isSubscribe)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2,23 +2,20 @@ package com.gh.common.chain
|
|||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.gh.gamecenter.common.utils.PermissionHelper
|
import com.gh.gamecenter.common.utils.PermissionHelper
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.core.utils.EmptyCallback
|
||||||
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
class CheckStoragePermissionHandler : DownloadChainHandler() {
|
class CheckStoragePermissionHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
PermissionHelper.checkStoragePermissionBeforeAction(
|
PermissionHelper.checkStoragePermissionBeforeAction(context, object : EmptyCallback {
|
||||||
context,
|
override fun onCallback() {
|
||||||
gameEntity.id,
|
if (hasNext()) {
|
||||||
gameEntity.name ?: "",
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
gameEntity.categoryChinese,
|
} else {
|
||||||
gameEntity.getApk().firstOrNull()?.format,
|
processEndCallback?.invoke(null)
|
||||||
) {
|
}
|
||||||
if (hasNext()) {
|
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
|
||||||
} else {
|
|
||||||
processEndCallback?.invoke(asVGame, null)
|
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1,40 +0,0 @@
|
|||||||
package com.gh.common.chain
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
|
||||||
|
|
||||||
abstract class DownloadChainHandler {
|
|
||||||
private var next: DownloadChainHandler? = null
|
|
||||||
|
|
||||||
// asVGame: 当前下载是否以畅玩游戏来进行
|
|
||||||
var processEndCallback: ((asVGame: Boolean, Any?) -> Unit)? = null
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 设置下一个处理者
|
|
||||||
*/
|
|
||||||
fun setNext(next: DownloadChainHandler?) {
|
|
||||||
this.next = next
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取下一个处理者
|
|
||||||
*/
|
|
||||||
fun getNext(): DownloadChainHandler? {
|
|
||||||
return next
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否存在下一个处理者
|
|
||||||
*/
|
|
||||||
fun hasNext(): Boolean {
|
|
||||||
return next != null
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理请求
|
|
||||||
* @param gameEntity 游戏实体
|
|
||||||
* @param asVGame 是否作为畅玩游戏进行
|
|
||||||
*/
|
|
||||||
abstract fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean)
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -3,18 +3,21 @@ package com.gh.common.chain
|
|||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.gh.common.util.DownloadDialogHelper
|
import com.gh.common.util.DownloadDialogHelper
|
||||||
import com.gh.gamecenter.common.utils.safelyGetInRelease
|
import com.gh.gamecenter.common.utils.safelyGetInRelease
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.core.utils.EmptyCallback
|
||||||
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
class DownloadDialogHelperHandler : DownloadChainHandler() {
|
class DownloadDialogHelperHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
val apk = gameEntity.getApk().safelyGetInRelease(0) ?: return
|
val apk = gameEntity.getApk().safelyGetInRelease(0) ?: return
|
||||||
DownloadDialogHelper.findAvailableDialogAndShow(context, gameEntity, apk) {
|
DownloadDialogHelper.findAvailableDialogAndShow(context, gameEntity, apk, object : EmptyCallback {
|
||||||
if (hasNext()) {
|
override fun onCallback() {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
if (hasNext()) {
|
||||||
} else {
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
processEndCallback?.invoke(asVGame, null)
|
} else {
|
||||||
|
processEndCallback?.invoke(null)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2,17 +2,17 @@ package com.gh.common.chain
|
|||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
import com.gh.gamecenter.gamedetail.dialog.GamePermissionDialogFragment
|
import com.gh.gamecenter.gamedetail.dialog.GamePermissionDialogFragment
|
||||||
|
|
||||||
class GamePermissionHandler : DownloadChainHandler() {
|
class GamePermissionHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
GamePermissionDialogFragment.show((context as AppCompatActivity), gameEntity, gameEntity.info) {
|
GamePermissionDialogFragment.show((context as AppCompatActivity), gameEntity, gameEntity.info) {
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
} else {
|
} else {
|
||||||
processEndCallback?.invoke(asVGame, null)
|
processEndCallback?.invoke(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,40 +0,0 @@
|
|||||||
package com.gh.common.chain
|
|
||||||
|
|
||||||
import android.app.Activity
|
|
||||||
import android.content.Context
|
|
||||||
import com.gh.common.util.DialogUtils
|
|
||||||
import com.gh.common.util.DirectUtils
|
|
||||||
import com.gh.common.util.TempCertificationUtils
|
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
|
||||||
|
|
||||||
class LandPageAddressHandler : DownloadChainHandler() {
|
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
|
||||||
if (gameEntity.isLandPageAddressDialog()) {
|
|
||||||
TempCertificationUtils.checkCertificationBeforeAction(gameEntity) {
|
|
||||||
if (context is Activity && context.isFinishing) {
|
|
||||||
// 当前 context 已经无效,不需要再传递执行下去了
|
|
||||||
return@checkCertificationBeforeAction
|
|
||||||
}
|
|
||||||
|
|
||||||
DialogUtils.showLandPageAddressDialog(context, gameEntity) {// 跳转第三方落地页
|
|
||||||
if (gameEntity.isLandPageAddressDialogShowOnly()) {
|
|
||||||
if (hasNext()) {
|
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
|
||||||
} else {
|
|
||||||
processEndCallback?.invoke(asVGame, null)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
DirectUtils.directToExternalBrowser(context, gameEntity.landPageAddressDialog!!.link!!)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (hasNext()) {
|
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
|
||||||
} else {
|
|
||||||
processEndCallback?.invoke(asVGame, null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,34 +1,17 @@
|
|||||||
package com.gh.common.chain
|
package com.gh.common.chain
|
||||||
|
|
||||||
import android.app.Activity
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.gh.common.util.DialogUtils
|
import com.gh.common.util.DialogUtils
|
||||||
import com.gh.common.util.TempCertificationUtils
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
|
||||||
|
|
||||||
class OverseaDownloadHandler : DownloadChainHandler() {
|
class OverseaDownloadHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
if (gameEntity.isOverseaAddressDialog()) {
|
DialogUtils.showOverseaDownloadDialog(context, gameEntity) {
|
||||||
TempCertificationUtils.checkCertificationBeforeAction(gameEntity) {
|
|
||||||
if (context is Activity && context.isFinishing) {
|
|
||||||
// 当前 context 已经无效,不需要再传递执行下去了
|
|
||||||
return@checkCertificationBeforeAction
|
|
||||||
}
|
|
||||||
|
|
||||||
DialogUtils.showOverseaDownloadDialog(context, gameEntity) {// 跳转海外下载地址弹窗
|
|
||||||
if (hasNext()) {
|
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
|
||||||
} else {
|
|
||||||
processEndCallback?.invoke(asVGame, null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
} else {
|
} else {
|
||||||
processEndCallback?.invoke(asVGame, null)
|
processEndCallback?.invoke(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,16 +3,16 @@ package com.gh.common.chain
|
|||||||
import android.content.Context
|
import android.content.Context
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import com.gh.common.dialog.PackageCheckDialogFragment
|
import com.gh.common.dialog.PackageCheckDialogFragment
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
class PackageCheckHandler : DownloadChainHandler() {
|
class PackageCheckHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
PackageCheckDialogFragment.show((context as AppCompatActivity), gameEntity) {
|
PackageCheckDialogFragment.show((context as AppCompatActivity), gameEntity) {
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
} else {
|
} else {
|
||||||
processEndCallback?.invoke(asVGame, null)
|
processEndCallback?.invoke(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,29 +0,0 @@
|
|||||||
package com.gh.common.chain
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import com.gh.gamecenter.common.utils.DialogHelper
|
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
|
||||||
|
|
||||||
class UnsupportedFeatureHandler : DownloadChainHandler() {
|
|
||||||
|
|
||||||
override fun handleRequest(
|
|
||||||
context: Context,
|
|
||||||
gameEntity: GameEntity,
|
|
||||||
asVGame: Boolean
|
|
||||||
) {
|
|
||||||
if (shouldShowUnsupportedFeatureDialog()) {
|
|
||||||
DialogHelper.showUnsupportedFeatureDialog(context)
|
|
||||||
} else {
|
|
||||||
if (hasNext()) {
|
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
|
||||||
} else {
|
|
||||||
processEndCallback?.invoke(asVGame, null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* TODO 检查某个版本是否支持指定的功能
|
|
||||||
*/
|
|
||||||
private fun shouldShowUnsupportedFeatureDialog(): Boolean = false
|
|
||||||
}
|
|
||||||
@ -3,29 +3,33 @@ package com.gh.common.chain
|
|||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.gh.common.simulator.NewSimulatorGameManager
|
import com.gh.common.simulator.NewSimulatorGameManager
|
||||||
import com.gh.common.simulator.SimulatorGameManager
|
import com.gh.common.simulator.SimulatorGameManager
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
class UpdateNewSimulatorHandler: DownloadChainHandler() {
|
class UpdateNewSimulatorHandler: ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
if (SimulatorGameManager.isSimulatorGame(gameEntity)) {
|
if (SimulatorGameManager.isSimulatorGame(gameEntity)) {
|
||||||
if (NewSimulatorGameManager.shouldShowUpdateNewSimulatorAlert(context)) {
|
if (NewSimulatorGameManager.shouldShowUpdateNewSimulatorAlert(context)) {
|
||||||
NewSimulatorGameManager.showUpdateNewsSimulator(context, gameEntity) {
|
NewSimulatorGameManager.showUpdateNewsSimulator(context) {
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
} else {
|
} else {
|
||||||
processEndCallback?.invoke(asVGame, null)
|
processEndCallback?.invoke(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
|
else{
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
|
else{
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1,26 +1,18 @@
|
|||||||
package com.gh.common.chain
|
package com.gh.common.chain
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
import com.gh.vspace.VHelper
|
import com.gh.vspace.VHelper
|
||||||
|
|
||||||
class ValidateVSpaceHandler : DownloadChainHandler() {
|
class ValidateVSpaceHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
val closure = {
|
VHelper.validateVSpaceBeforeAction(context, gameEntity, true) {
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
} else {
|
} else {
|
||||||
processEndCallback?.invoke(asVGame, null)
|
processEndCallback?.invoke(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (asVGame) {
|
|
||||||
VHelper.validateVSpaceBeforeAction(context, gameEntity) {
|
|
||||||
closure.invoke()
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
closure.invoke()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1,63 +1,18 @@
|
|||||||
package com.gh.common.chain
|
package com.gh.common.chain
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.gh.gamecenter.R
|
import com.gh.common.util.DialogUtils
|
||||||
import com.gh.gamecenter.common.utils.DialogHelper
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
import com.gh.gamecenter.common.utils.SensorsBridge
|
|
||||||
import com.gh.gamecenter.common.utils.toResString
|
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
|
||||||
|
|
||||||
class VersionNumberHandler : DownloadChainHandler() {
|
class VersionNumberHandler : ChainHandler() {
|
||||||
|
|
||||||
override fun handleRequest(context: Context, gameEntity: GameEntity, asVGame: Boolean) {
|
override fun handleRequest(context: Context, gameEntity: GameEntity) {
|
||||||
val confirmCallback = {
|
DialogUtils.showVersionNumberDialog(context, gameEntity) {
|
||||||
if (hasNext()) {
|
if (hasNext()) {
|
||||||
getNext()?.handleRequest(context, gameEntity, asVGame)
|
getNext()?.handleRequest(context, gameEntity)
|
||||||
} else {
|
} else {
|
||||||
processEndCallback?.invoke(asVGame, null)
|
processEndCallback?.invoke(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!gameEntity.isShowVersionNumber()) {
|
|
||||||
confirmCallback.invoke()
|
|
||||||
} else {
|
|
||||||
SensorsBridge.trackGameDemoDialogShow(
|
|
||||||
gameId = gameEntity.id,
|
|
||||||
gameName = gameEntity.name ?: "",
|
|
||||||
gameType = gameEntity.categoryChinese
|
|
||||||
)
|
|
||||||
DialogHelper.showGuideDialog(
|
|
||||||
context,
|
|
||||||
"温馨提示",
|
|
||||||
gameEntity.getVersionNumberString(),
|
|
||||||
"继续下载",
|
|
||||||
R.string.cancel.toResString(),
|
|
||||||
{
|
|
||||||
confirmCallback.invoke()
|
|
||||||
SensorsBridge.trackGameDemoDialogClick(
|
|
||||||
buttonName = "继续下载",
|
|
||||||
gameId = gameEntity.id,
|
|
||||||
gameName = gameEntity.name ?: "",
|
|
||||||
gameType = gameEntity.categoryChinese
|
|
||||||
)
|
|
||||||
},
|
|
||||||
cancelClickCallback = {
|
|
||||||
SensorsBridge.trackGameDemoDialogClick(
|
|
||||||
buttonName = R.string.cancel.toResString(),
|
|
||||||
gameId = gameEntity.id,
|
|
||||||
gameName = gameEntity.name ?: "",
|
|
||||||
gameType = gameEntity.categoryChinese
|
|
||||||
)
|
|
||||||
},
|
|
||||||
touchOutsideCallback = {
|
|
||||||
SensorsBridge.trackGameDemoDialogClick(
|
|
||||||
buttonName = "关闭弹窗",
|
|
||||||
gameId = gameEntity.id,
|
|
||||||
gameName = gameEntity.name ?: "",
|
|
||||||
gameType = gameEntity.categoryChinese
|
|
||||||
)
|
|
||||||
},
|
|
||||||
extraConfig = DialogHelper.Config(titleIcon = R.drawable.ic_dialog_tips)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -8,35 +8,35 @@ import android.text.TextUtils;
|
|||||||
|
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import com.gh.gamecenter.common.utils.DarkModeUtils;
|
||||||
|
import com.gh.gamecenter.common.utils.EnvHelper;
|
||||||
|
import com.gh.gamecenter.common.constant.Constants;
|
||||||
|
import com.gh.gamecenter.core.utils.GsonUtils;
|
||||||
import com.gh.common.util.PackageHelper;
|
import com.gh.common.util.PackageHelper;
|
||||||
import com.gh.common.util.PackageUtils;
|
import com.gh.common.util.PackageUtils;
|
||||||
import com.gh.gamecenter.BuildConfig;
|
import com.gh.gamecenter.BuildConfig;
|
||||||
import com.gh.gamecenter.common.constant.CommonConsts;
|
import com.gh.gamecenter.SuggestionActivity;
|
||||||
import com.gh.gamecenter.common.constant.Constants;
|
import com.gh.gamecenter.core.utils.SPUtils;
|
||||||
|
import com.gh.gamecenter.entity.GameGuidePopupEntity;
|
||||||
|
import com.gh.gamecenter.entity.NewSettingsEntity;
|
||||||
|
import com.gh.gamecenter.entity.NewsEntity;
|
||||||
|
import com.gh.gamecenter.entity.SettingsEntity;
|
||||||
import com.gh.gamecenter.common.eventbus.EBReuse;
|
import com.gh.gamecenter.common.eventbus.EBReuse;
|
||||||
|
import com.gh.gamecenter.entity.SimulatorEntity;
|
||||||
|
import com.gh.gamecenter.entity.VSetting;
|
||||||
import com.gh.gamecenter.common.retrofit.BiResponse;
|
import com.gh.gamecenter.common.retrofit.BiResponse;
|
||||||
import com.gh.gamecenter.common.retrofit.Response;
|
import com.gh.gamecenter.common.retrofit.Response;
|
||||||
import com.gh.gamecenter.common.utils.DarkModeUtils;
|
|
||||||
import com.gh.gamecenter.common.utils.EnvHelper;
|
|
||||||
import com.gh.gamecenter.core.utils.GsonUtils;
|
|
||||||
import com.gh.gamecenter.core.utils.SPUtils;
|
|
||||||
import com.gh.gamecenter.core.utils.UrlFilterUtils;
|
|
||||||
import com.gh.gamecenter.entity.GameGuidePopupEntity;
|
|
||||||
import com.gh.gamecenter.entity.NewApiSettingsEntity;
|
|
||||||
import com.gh.gamecenter.entity.NewSettingsEntity;
|
|
||||||
import com.gh.gamecenter.entity.VSetting;
|
|
||||||
import com.gh.gamecenter.feature.entity.SettingsEntity;
|
|
||||||
import com.gh.gamecenter.feature.entity.SimulatorEntity;
|
|
||||||
import com.gh.gamecenter.feature.utils.ContentBlockedHelper;
|
|
||||||
import com.gh.gamecenter.retrofit.RetrofitManager;
|
import com.gh.gamecenter.retrofit.RetrofitManager;
|
||||||
import com.gh.vspace.VHelper;
|
import com.gh.vspace.VHelper;
|
||||||
import com.halo.assistant.HaloApp;
|
import com.halo.assistant.HaloApp;
|
||||||
|
import com.lightgame.utils.Utils;
|
||||||
|
|
||||||
import org.greenrobot.eventbus.EventBus;
|
import org.greenrobot.eventbus.EventBus;
|
||||||
import org.json.JSONException;
|
import org.json.JSONException;
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
|
|
||||||
import io.reactivex.android.schedulers.AndroidSchedulers;
|
import io.reactivex.android.schedulers.AndroidSchedulers;
|
||||||
@ -57,44 +57,154 @@ public class Config {
|
|||||||
public static final String WEIBO_APPKEY = BuildConfig.WEIBO_APPKEY;
|
public static final String WEIBO_APPKEY = BuildConfig.WEIBO_APPKEY;
|
||||||
public static final String QUICK_LOGIN_APPID = BuildConfig.QUICK_LOGIN_APPID;
|
public static final String QUICK_LOGIN_APPID = BuildConfig.QUICK_LOGIN_APPID;
|
||||||
public static final String QUICK_LOGIN_APPKEY = BuildConfig.QUICK_LOGIN_APPKEY;
|
public static final String QUICK_LOGIN_APPKEY = BuildConfig.QUICK_LOGIN_APPKEY;
|
||||||
public static final String URL_ARTICLE = "www.ghzs666.com/article/"; // ghzs/ghzs666 统一
|
// http://www.ghzs666.com/article/${articleId}.html
|
||||||
|
public static final String URL_ARTICLE = "http://www.ghzs666.com/article/"; // ghzs/ghzs666 统一
|
||||||
|
|
||||||
private static final String SETTINGS_KEY = "settingsKey";
|
private static final String SETTINGS_KEY = "settingsKey";
|
||||||
|
|
||||||
private static SettingsEntity mSettingsEntity;
|
private static SettingsEntity mSettingsEntity;
|
||||||
private static NewSettingsEntity mNewSettingsEntity;
|
private static NewSettingsEntity mNewSettingsEntity;
|
||||||
private static NewApiSettingsEntity mNewApiSettingsEntity;
|
|
||||||
|
|
||||||
private static NewApiSettingsEntity.NightMode mNightModeSetting;
|
private static NewSettingsEntity.NightMode mNightModeSetting;
|
||||||
private static SimulatorEntity mNewSimulatorEntity;
|
private static SimulatorEntity mNewSimulatorEntity;
|
||||||
private static VSetting mVSetting;
|
private static VSetting mVSetting;
|
||||||
private static GameGuidePopupEntity mGameGuidePopupEntity;
|
private static GameGuidePopupEntity mGameGuidePopupEntity;
|
||||||
private static SharedPreferences mDefaultSharedPreferences;
|
private static SharedPreferences mDefaultSharedPreferences;
|
||||||
|
|
||||||
|
public static final String FIX_DOWNLOAD_KEY = "isFixDownload";
|
||||||
|
public static final String FIX_PLUGIN_KEY = "isFixPlugin";
|
||||||
|
public static final String FIX_ARTICLE_KEY = "isFixArticle";
|
||||||
|
public static final String FIX_COMMUNITY_KEY = "isFixCommunity";
|
||||||
|
|
||||||
public static final int VIDEO_PAGE_SIZE = 21; // 视频列表大多都是一行3个
|
public static final int VIDEO_PAGE_SIZE = 21; // 视频列表大多都是一行3个
|
||||||
|
|
||||||
public static boolean isShow() {
|
public static boolean isShow() {
|
||||||
return !SPUtils.getBoolean(Constants.SP_TEENAGER_MODE);
|
if (SPUtils.getBoolean(Constants.SP_TEENAGER_MODE)) return false;
|
||||||
|
|
||||||
|
if (getPreferences().getBoolean(FIX_DOWNLOAD_KEY, false)) return true;
|
||||||
|
|
||||||
|
if (!isExistDownloadFilter()) return false;
|
||||||
|
|
||||||
|
for (SettingsEntity.Download entity : getSettings().getDownload()) {
|
||||||
|
if ("all".equals(entity.getGame())) {
|
||||||
|
if (entity.getPluginfy() && "normal".equals(entity.getPolicy()) && filterTime(entity.getTime())) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static boolean isShowDownload(String gameId) {
|
||||||
|
|
||||||
|
if (getPreferences().getBoolean(FIX_DOWNLOAD_KEY, false)) return true;
|
||||||
|
|
||||||
|
if (TextUtils.isEmpty(gameId) || !isExistDownloadFilter())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
for (SettingsEntity.Download entity : getSettings().getDownload()) {
|
||||||
|
if (gameId.equals(entity.getGame())) {
|
||||||
|
if ("normal".equals(entity.getPolicy()) && filterTime(entity.getTime())) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else if ("all".equals(entity.getGame())) {
|
||||||
|
if ("normal".equals(entity.getPolicy()) && filterTime(entity.getTime())) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* VPN 开关选项是否开启
|
* 是否启用畅玩游戏
|
||||||
*/
|
*/
|
||||||
public static boolean isVpnOptionEnabled() {
|
public static boolean isVGameEnabled() {
|
||||||
if (mNewApiSettingsEntity == null
|
if (getSettings() == null) {
|
||||||
|| mNewApiSettingsEntity.getInstall() == null
|
|
||||||
|| mNewApiSettingsEntity.getInstall().getVpnRequired() == null) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return mNewApiSettingsEntity.getInstall().getVpnRequired().getShouldShowVpnOption();
|
return !"off".equals(getSettings().getGameSmooth());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static boolean isShowPlugin(String gameId) {
|
||||||
|
SharedPreferences preferences = getPreferences();
|
||||||
|
boolean isFixPlugin = preferences.getBoolean(FIX_PLUGIN_KEY, false);
|
||||||
|
if (isFixPlugin) return true;
|
||||||
|
|
||||||
|
if (TextUtils.isEmpty(gameId) || !isExistDownloadFilter())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
for (SettingsEntity.Download entity : getSettings().getDownload()) {
|
||||||
|
if (gameId.equals(entity.getGame())) {
|
||||||
|
if (entity.getPluginfy() && filterTime(entity.getTime())) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ("all".equals(entity.getGame())) {
|
||||||
|
if (entity.getPluginfy() && filterTime(entity.getTime())) {
|
||||||
|
preferences.edit().putBoolean(FIX_PLUGIN_KEY, true).apply();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isShowPlugin() {
|
||||||
|
SharedPreferences preferences = getPreferences();
|
||||||
|
boolean isFixPlugin = preferences.getBoolean(FIX_PLUGIN_KEY, false);
|
||||||
|
if (isFixPlugin) return true;
|
||||||
|
|
||||||
|
if (!isExistDownloadFilter())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
for (SettingsEntity.Download entity : getSettings().getDownload()) {
|
||||||
|
if ("all".equals(entity.getGame())) {
|
||||||
|
if (entity.getPluginfy() && filterTime(entity.getTime())) {
|
||||||
|
preferences.edit().putBoolean(FIX_PLUGIN_KEY, true).apply();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean filterTime(SettingsEntity.Download.TimeEntity timeEntity) {
|
||||||
|
long end = timeEntity.getEnd();
|
||||||
|
long start = timeEntity.getStart();
|
||||||
|
long curTime = Utils.getTime(HaloApp.getInstance().getApplication());
|
||||||
|
|
||||||
|
if ((start == 0 || curTime >= start) && (end == 0 || curTime <= end)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setSettings(SettingsEntity settingsEntity) {
|
public static void setSettings(SettingsEntity settingsEntity) {
|
||||||
getPreferences().edit().putString(SETTINGS_KEY, GsonUtils.toJson(settingsEntity)).apply();
|
getPreferences().edit().putString(SETTINGS_KEY, GsonUtils.toJson(settingsEntity)).apply();
|
||||||
mSettingsEntity = settingsEntity;
|
mSettingsEntity = settingsEntity;
|
||||||
|
|
||||||
PackageHelper.refreshList();
|
// 更新设置状态
|
||||||
|
mSettingsEntity.showArticleEntrance();
|
||||||
|
mSettingsEntity.showCommunityEntrance();
|
||||||
|
|
||||||
|
// 加载完设置后刷新下
|
||||||
|
PackageHelper.initList();
|
||||||
|
|
||||||
|
// 初始化畅玩相关的东西
|
||||||
|
VHelper.init(HaloApp.getInstance());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@ -105,8 +215,6 @@ public class Config {
|
|||||||
if (!TextUtils.isEmpty(json)) {
|
if (!TextUtils.isEmpty(json)) {
|
||||||
mSettingsEntity = GsonUtils.fromJson(json, SettingsEntity.class);
|
mSettingsEntity = GsonUtils.fromJson(json, SettingsEntity.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
mSettingsEntity.setGameSmooth("off");
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
@ -119,32 +227,24 @@ public class Config {
|
|||||||
public static SimulatorEntity getNewSimulatorEntitySetting() {
|
public static SimulatorEntity getNewSimulatorEntitySetting() {
|
||||||
if (mNewSimulatorEntity != null) {
|
if (mNewSimulatorEntity != null) {
|
||||||
return mNewSimulatorEntity;
|
return mNewSimulatorEntity;
|
||||||
} else if (mNewApiSettingsEntity != null && mNewApiSettingsEntity.getSimulator() != null) {
|
} else if (mNewSettingsEntity != null && mNewSettingsEntity.getSimulator() != null) {
|
||||||
return mNewApiSettingsEntity.getSimulator();
|
return mNewSettingsEntity.getSimulator();
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
public static NewApiSettingsEntity.NightMode getNightModeSetting() {
|
public static NewSettingsEntity.NightMode getNightModeSetting() {
|
||||||
if (mNightModeSetting != null) {
|
if (mNightModeSetting != null) {
|
||||||
return mNightModeSetting;
|
return mNightModeSetting;
|
||||||
} else if (mNewApiSettingsEntity != null && mNewApiSettingsEntity.getNightMode() != null) {
|
} else if (mNewSettingsEntity != null && mNewSettingsEntity.getNightMode() != null) {
|
||||||
return mNewApiSettingsEntity.getNightMode();
|
return mNewSettingsEntity.getNightMode();
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean getUserInterestedGame() {
|
|
||||||
if (mNewApiSettingsEntity != null) {
|
|
||||||
return mNewApiSettingsEntity.getUserInterestedGame();
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
public static NewSettingsEntity getNewSettingsEntity() {
|
public static NewSettingsEntity getNewSettingsEntity() {
|
||||||
if (mNewSettingsEntity == null) {
|
if (mNewSettingsEntity == null) {
|
||||||
@ -160,26 +260,6 @@ public class Config {
|
|||||||
return mNewSettingsEntity;
|
return mNewSettingsEntity;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
|
||||||
public static NewApiSettingsEntity getNewApiSettingsEntity() {
|
|
||||||
if (mNewApiSettingsEntity == null) {
|
|
||||||
try {
|
|
||||||
String json = SPUtils.getString(Constants.SP_NEW_API_SETTINGS);
|
|
||||||
if (!TextUtils.isEmpty(json)) {
|
|
||||||
mNewApiSettingsEntity = GsonUtils.fromJson(json, NewApiSettingsEntity.class);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return mNewApiSettingsEntity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void updateNewApiSettings(NewApiSettingsEntity settingsEntity) {
|
|
||||||
mNewApiSettingsEntity = settingsEntity;
|
|
||||||
SPUtils.setString(Constants.SP_NEW_API_SETTINGS, GsonUtils.toJson(settingsEntity));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
public static VSetting getVSettingEntity() {
|
public static VSetting getVSettingEntity() {
|
||||||
if (mVSetting == null) {
|
if (mVSetting == null) {
|
||||||
@ -195,31 +275,32 @@ public class Config {
|
|||||||
return mVSetting;
|
return mVSetting;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 请求网络数据,尝试刷新畅玩相关配置
|
|
||||||
*/
|
|
||||||
@SuppressLint("CheckResult")
|
|
||||||
public static void refreshVSettingEntity() {
|
|
||||||
RetrofitManager.getInstance()
|
|
||||||
.getVApi().getSettings(BuildConfig.VERSION_NAME, Build.VERSION.SDK_INT)
|
|
||||||
.subscribeOn(Schedulers.io())
|
|
||||||
.observeOn(AndroidSchedulers.mainThread())
|
|
||||||
.subscribe(new BiResponse<VSetting>() {
|
|
||||||
@Override
|
|
||||||
public void onSuccess(VSetting data) {
|
|
||||||
mVSetting = data;
|
|
||||||
SPUtils.setString(Constants.SP_V_SETTINGS, GsonUtils.toJson(data));
|
|
||||||
|
|
||||||
VHelper.init(HaloApp.getInstance());
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
public static GameGuidePopupEntity getGameGuidePopupEntity() {
|
public static GameGuidePopupEntity getGameGuidePopupEntity() {
|
||||||
return mGameGuidePopupEntity;
|
return mGameGuidePopupEntity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static boolean isExistDownloadFilter() {
|
||||||
|
if (getSettings() == null || getSettings().getDownload() == null || getSettings().getDownload().size() == 0) {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void filterPluginArticle(List<NewsEntity> list) {
|
||||||
|
if (isShowPlugin() || list == null) return;
|
||||||
|
|
||||||
|
for (int i = 0; i < list.size(); i++) {
|
||||||
|
NewsEntity newsEntity = list.get(i);
|
||||||
|
String title = newsEntity.getTitle();
|
||||||
|
if (!TextUtils.isEmpty(title) && title.contains("插件")) {
|
||||||
|
list.remove(i);
|
||||||
|
i--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static SharedPreferences getPreferences() {
|
public static SharedPreferences getPreferences() {
|
||||||
if (mDefaultSharedPreferences == null) {
|
if (mDefaultSharedPreferences == null) {
|
||||||
mDefaultSharedPreferences = PreferenceManager.getDefaultSharedPreferences(HaloApp.getInstance().getApplication());
|
mDefaultSharedPreferences = PreferenceManager.getDefaultSharedPreferences(HaloApp.getInstance().getApplication());
|
||||||
@ -231,10 +312,6 @@ public class Config {
|
|||||||
@SuppressLint("CheckResult")
|
@SuppressLint("CheckResult")
|
||||||
public static void getGhzsSettings() {
|
public static void getGhzsSettings() {
|
||||||
String channel = HaloApp.getInstance().getChannel();
|
String channel = HaloApp.getInstance().getChannel();
|
||||||
|
|
||||||
// 把请求提前,避免请求过多阻塞,首页显示广告时老是用到上一次的缓存
|
|
||||||
getNewSettings(channel);
|
|
||||||
|
|
||||||
RetrofitManager.getInstance()
|
RetrofitManager.getInstance()
|
||||||
.getApi().getSettings(PackageUtils.getGhVersionName(), channel)
|
.getApi().getSettings(PackageUtils.getGhVersionName(), channel)
|
||||||
.subscribeOn(Schedulers.io())
|
.subscribeOn(Schedulers.io())
|
||||||
@ -246,10 +323,13 @@ public class Config {
|
|||||||
|
|
||||||
// 意见反馈
|
// 意见反馈
|
||||||
SharedPreferences.Editor edit = getPreferences().edit();
|
SharedPreferences.Editor edit = getPreferences().edit();
|
||||||
edit.putString(CommonConsts.SUGGESTION_HINT_TYPE,
|
edit.putString(SuggestionActivity.SUGGESTION_HINT_TYPE,
|
||||||
GsonUtils.toJson(response.getSuggestion()));
|
GsonUtils.toJson(response.getSuggestion()));
|
||||||
edit.apply();
|
edit.apply();
|
||||||
|
|
||||||
|
if (!getPreferences().getBoolean(Config.FIX_DOWNLOAD_KEY, false) && Config.isShow()) {
|
||||||
|
getPreferences().edit().putBoolean(Config.FIX_DOWNLOAD_KEY, true).apply();
|
||||||
|
}
|
||||||
if (!SPUtils.getBoolean(Constants.SP_TEENAGER_MODE)) {
|
if (!SPUtils.getBoolean(Constants.SP_TEENAGER_MODE)) {
|
||||||
EventBus.getDefault().post(new EBReuse("Refresh"));
|
EventBus.getDefault().post(new EBReuse("Refresh"));
|
||||||
}
|
}
|
||||||
@ -264,11 +344,50 @@ public class Config {
|
|||||||
@Override
|
@Override
|
||||||
public void onSuccess(NewSettingsEntity data) {
|
public void onSuccess(NewSettingsEntity data) {
|
||||||
mNewSettingsEntity = data;
|
mNewSettingsEntity = data;
|
||||||
|
if (mNightModeSetting != null) {
|
||||||
|
mNewSettingsEntity.setNightMode(mNightModeSetting);
|
||||||
|
}
|
||||||
SPUtils.setString(Constants.SP_NEW_SETTINGS, GsonUtils.toJson(data));
|
SPUtils.setString(Constants.SP_NEW_SETTINGS, GsonUtils.toJson(data));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
refreshVSettingEntity();
|
if (mVSetting == null) {
|
||||||
|
RetrofitManager.getInstance()
|
||||||
|
.getVApi().getSettings(BuildConfig.VERSION_NAME)
|
||||||
|
.subscribeOn(Schedulers.io())
|
||||||
|
.subscribe(new BiResponse<VSetting>() {
|
||||||
|
@Override
|
||||||
|
public void onSuccess(VSetting data) {
|
||||||
|
mVSetting = data;
|
||||||
|
SPUtils.setString(Constants.SP_V_SETTINGS, GsonUtils.toJson(data));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mNightModeSetting == null && mNewSimulatorEntity == null) {
|
||||||
|
RetrofitManager.getInstance()
|
||||||
|
.getNewApi().getNewSettings(PackageUtils.getGhVersionName(), channel)
|
||||||
|
.subscribeOn(Schedulers.io())
|
||||||
|
.observeOn(AndroidSchedulers.mainThread())
|
||||||
|
.subscribe(new BiResponse<NewSettingsEntity>() {
|
||||||
|
@Override
|
||||||
|
public void onSuccess(NewSettingsEntity data) {
|
||||||
|
mNightModeSetting = data.getNightMode();
|
||||||
|
mNewSimulatorEntity = data.getSimulator();
|
||||||
|
if (HaloApp.getInstance().isNewForThisVersion && mNightModeSetting != null && mNightModeSetting.getInstall()) {
|
||||||
|
DarkModeUtils.INSTANCE.updateFollowSystemDarkModeToSp(true);
|
||||||
|
DarkModeUtils.INSTANCE.updateAppDarkModeStatusToSp(true);
|
||||||
|
DarkModeUtils.INSTANCE.initDarkMode();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mNewSettingsEntity != null) {
|
||||||
|
mNewSettingsEntity.setSimulator(mNewSimulatorEntity);
|
||||||
|
mNewSettingsEntity.setNightMode(mNightModeSetting);
|
||||||
|
SPUtils.setString(Constants.SP_NEW_SETTINGS, GsonUtils.toJson(data));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
RetrofitManager.getInstance()
|
RetrofitManager.getInstance()
|
||||||
.getApi().getGameGuidePopup(Build.MANUFACTURER, Build.VERSION.RELEASE, Build.MODEL, channel, BuildConfig.VERSION_NAME)
|
.getApi().getGameGuidePopup(Build.MANUFACTURER, Build.VERSION.RELEASE, Build.MODEL, channel, BuildConfig.VERSION_NAME)
|
||||||
@ -301,38 +420,4 @@ public class Config {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("CheckResult")
|
|
||||||
private static void getNewSettings(String channel) {
|
|
||||||
if (mNewApiSettingsEntity == null) {
|
|
||||||
|
|
||||||
String filterString = UrlFilterUtils.getFilterQuery(
|
|
||||||
"manufacturer", Build.MANUFACTURER,
|
|
||||||
"model", Build.MODEL,
|
|
||||||
"android_sdk_version", String.valueOf(Build.VERSION.SDK_INT));
|
|
||||||
|
|
||||||
RetrofitManager.getInstance()
|
|
||||||
.getNewApi().getNewSettings(PackageUtils.getGhVersionName(), channel, filterString)
|
|
||||||
.subscribeOn(Schedulers.io())
|
|
||||||
.observeOn(AndroidSchedulers.mainThread())
|
|
||||||
.subscribe(new BiResponse<NewApiSettingsEntity>() {
|
|
||||||
@Override
|
|
||||||
public void onSuccess(NewApiSettingsEntity data) {
|
|
||||||
mNewApiSettingsEntity = data;
|
|
||||||
mNightModeSetting = data.getNightMode();
|
|
||||||
mNewSimulatorEntity = data.getSimulator();
|
|
||||||
if (HaloApp.getInstance().isNewForThisVersion && mNightModeSetting != null && mNightModeSetting.getInstall()) {
|
|
||||||
DarkModeUtils.INSTANCE.updateFollowSystemDarkModeToSp(true);
|
|
||||||
DarkModeUtils.INSTANCE.initDarkMode();
|
|
||||||
}
|
|
||||||
SPUtils.setString(Constants.SP_NEW_API_SETTINGS, GsonUtils.toJson(data));
|
|
||||||
|
|
||||||
// 刷新屏蔽字段
|
|
||||||
if (mNewApiSettingsEntity.getGameShieldContents() != null) {
|
|
||||||
ContentBlockedHelper.INSTANCE.init(mNewApiSettingsEntity.getGameShieldContents());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,15 +13,15 @@ import android.widget.PopupWindow
|
|||||||
import androidx.core.content.ContextCompat
|
import androidx.core.content.ContextCompat
|
||||||
import androidx.databinding.BindingAdapter
|
import androidx.databinding.BindingAdapter
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
import com.gh.gamecenter.R
|
|
||||||
import com.gh.gamecenter.common.callback.OnViewClickListener
|
import com.gh.gamecenter.common.callback.OnViewClickListener
|
||||||
import com.gh.gamecenter.common.databinding.LayoutPopupContainerBinding
|
|
||||||
import com.gh.gamecenter.common.utils.dip2px
|
import com.gh.gamecenter.common.utils.dip2px
|
||||||
import com.gh.gamecenter.common.utils.toDrawable
|
import com.gh.gamecenter.common.utils.toDrawable
|
||||||
import com.gh.gamecenter.common.view.BugFixedPopupWindow
|
import com.gh.gamecenter.common.view.BugFixedPopupWindow
|
||||||
|
import com.gh.gamecenter.R
|
||||||
import com.gh.gamecenter.databinding.KaifuAddItemBinding
|
import com.gh.gamecenter.databinding.KaifuAddItemBinding
|
||||||
import com.gh.gamecenter.databinding.LayoutAddKaifuPopupBinding
|
import com.gh.gamecenter.databinding.LayoutAddKaifuPopupBinding
|
||||||
import com.gh.gamecenter.feature.entity.ServerCalendarEntity
|
import com.gh.gamecenter.databinding.LayoutPopupContainerBinding
|
||||||
|
import com.gh.gamecenter.entity.ServerCalendarEntity
|
||||||
import com.gh.gamecenter.servers.add.AddKaiFuPopupAdapter
|
import com.gh.gamecenter.servers.add.AddKaiFuPopupAdapter
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
import java.util.*
|
import java.util.*
|
||||||
@ -120,13 +120,13 @@ object AddKaiFuBindingAdapter {
|
|||||||
@BindingAdapter("kaiFuTextColor", "kaiFuTextPosition")
|
@BindingAdapter("kaiFuTextColor", "kaiFuTextPosition")
|
||||||
fun kaiFuTextColor(view: EditText, dataMark: Int, position: Int) {
|
fun kaiFuTextColor(view: EditText, dataMark: Int, position: Int) {
|
||||||
if (dataMark == 1 && view.id == R.id.kaifu_add_time || dataMark == 2 && view.id == R.id.kaifu_add_first_name || dataMark == 3 && view.id == R.id.kaifu_add_server_name || dataMark == 4) {
|
if (dataMark == 1 && view.id == R.id.kaifu_add_time || dataMark == 2 && view.id == R.id.kaifu_add_first_name || dataMark == 3 && view.id == R.id.kaifu_add_server_name || dataMark == 4) {
|
||||||
view.setTextColor(ContextCompat.getColor(view.context, R.color.secondary_red))
|
view.setTextColor(ContextCompat.getColor(view.context, R.color.theme_red))
|
||||||
view.setHintTextColor(ContextCompat.getColor(view.context, R.color.secondary_red))
|
view.setHintTextColor(ContextCompat.getColor(view.context, R.color.theme_red))
|
||||||
} else if (position == 0) {
|
} else if (position == 0) {
|
||||||
view.setTextColor(ContextCompat.getColor(view.context, R.color.hint))
|
view.setTextColor(ContextCompat.getColor(view.context, R.color.hint))
|
||||||
view.setHintTextColor(ContextCompat.getColor(view.context, R.color.hint))
|
view.setHintTextColor(ContextCompat.getColor(view.context, R.color.hint))
|
||||||
} else {
|
} else {
|
||||||
view.setTextColor(ContextCompat.getColor(view.context, R.color.text_primary))
|
view.setTextColor(ContextCompat.getColor(view.context, R.color.text_title))
|
||||||
view.setHintTextColor(ContextCompat.getColor(view.context, R.color.hint))
|
view.setHintTextColor(ContextCompat.getColor(view.context, R.color.hint))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,33 +1,37 @@
|
|||||||
package com.gh.common.databind;
|
package com.gh.common.databind;
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.graphics.Color;
|
import android.graphics.Color;
|
||||||
|
import android.graphics.Typeface;
|
||||||
import android.text.Spannable;
|
import android.text.Spannable;
|
||||||
import android.text.SpannableString;
|
import android.text.SpannableString;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.text.style.ForegroundColorSpan;
|
import android.text.style.ForegroundColorSpan;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.MotionEvent;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.widget.LinearLayout;
|
import android.widget.LinearLayout;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.appcompat.app.AppCompatActivity;
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.core.content.ContextCompat;
|
||||||
|
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
|
||||||
|
|
||||||
|
import com.facebook.drawee.view.SimpleDraweeView;
|
||||||
import com.gh.common.chain.BrowserInstallHandler;
|
import com.gh.common.chain.BrowserInstallHandler;
|
||||||
import com.gh.common.chain.DownloadChainBuilder;
|
import com.gh.common.chain.CertificationHandler;
|
||||||
import com.gh.common.chain.DownloadChainHandler;
|
import com.gh.common.chain.ChainBuilder;
|
||||||
|
import com.gh.common.chain.ChainHandler;
|
||||||
import com.gh.common.chain.CheckDownloadHandler;
|
import com.gh.common.chain.CheckDownloadHandler;
|
||||||
import com.gh.common.chain.CheckStoragePermissionHandler;
|
|
||||||
import com.gh.common.chain.DownloadDialogHelperHandler;
|
import com.gh.common.chain.DownloadDialogHelperHandler;
|
||||||
import com.gh.common.chain.GamePermissionHandler;
|
import com.gh.common.chain.GamePermissionHandler;
|
||||||
import com.gh.common.chain.LandPageAddressHandler;
|
|
||||||
import com.gh.common.chain.OverseaDownloadHandler;
|
import com.gh.common.chain.OverseaDownloadHandler;
|
||||||
import com.gh.common.chain.PackageCheckHandler;
|
import com.gh.common.chain.PackageCheckHandler;
|
||||||
import com.gh.common.chain.UnsupportedFeatureHandler;
|
|
||||||
import com.gh.common.chain.ValidateVSpaceHandler;
|
import com.gh.common.chain.ValidateVSpaceHandler;
|
||||||
import com.gh.common.chain.VersionNumberHandler;
|
import com.gh.common.chain.VersionNumberHandler;
|
||||||
import com.gh.common.constant.Config;
|
import com.gh.common.constant.Config;
|
||||||
|
import com.gh.common.exposure.ExposureEvent;
|
||||||
import com.gh.common.filter.RegionSetting;
|
import com.gh.common.filter.RegionSetting;
|
||||||
import com.gh.common.filter.RegionSettingHelper;
|
import com.gh.common.filter.RegionSettingHelper;
|
||||||
import com.gh.common.history.HistoryHelper;
|
import com.gh.common.history.HistoryHelper;
|
||||||
@ -39,51 +43,182 @@ import com.gh.common.util.DialogUtils;
|
|||||||
import com.gh.common.util.GameUtils;
|
import com.gh.common.util.GameUtils;
|
||||||
import com.gh.common.util.GameViewUtils;
|
import com.gh.common.util.GameViewUtils;
|
||||||
import com.gh.common.util.LogUtils;
|
import com.gh.common.util.LogUtils;
|
||||||
|
import com.gh.common.util.NewsUtils;
|
||||||
import com.gh.common.util.PackageInstaller;
|
import com.gh.common.util.PackageInstaller;
|
||||||
import com.gh.common.util.PackageLauncher;
|
|
||||||
import com.gh.common.util.PackageUtils;
|
import com.gh.common.util.PackageUtils;
|
||||||
|
import com.gh.common.util.PlatformUtils;
|
||||||
import com.gh.common.util.ReservationHelper;
|
import com.gh.common.util.ReservationHelper;
|
||||||
|
import com.gh.common.view.DownloadButton;
|
||||||
|
import com.gh.common.view.GameIconView;
|
||||||
import com.gh.download.DownloadManager;
|
import com.gh.download.DownloadManager;
|
||||||
import com.gh.download.dialog.DownloadDialog;
|
import com.gh.download.dialog.DownloadDialog;
|
||||||
import com.gh.download.server.BrowserInstallHelper;
|
|
||||||
import com.gh.gamecenter.DownloadManagerActivity;
|
import com.gh.gamecenter.DownloadManagerActivity;
|
||||||
import com.gh.gamecenter.R;
|
import com.gh.gamecenter.R;
|
||||||
import com.gh.gamecenter.WebActivity;
|
import com.gh.gamecenter.WebActivity;
|
||||||
import com.gh.gamecenter.common.entity.LinkEntity;
|
import com.gh.gamecenter.common.baselist.LoadStatus;
|
||||||
import com.gh.gamecenter.common.utils.DarkModeUtils;
|
import com.gh.gamecenter.common.callback.OnViewClickListener;
|
||||||
import com.gh.gamecenter.common.utils.ExtensionsKt;
|
import com.gh.gamecenter.common.utils.ExtensionsKt;
|
||||||
import com.gh.gamecenter.common.utils.FileUtils;
|
|
||||||
import com.gh.gamecenter.common.utils.ImageUtils;
|
import com.gh.gamecenter.common.utils.ImageUtils;
|
||||||
import com.gh.gamecenter.common.utils.NewFlatLogUtils;
|
import com.gh.gamecenter.common.utils.DarkModeUtils;
|
||||||
import com.gh.gamecenter.common.utils.SensorsBridge;
|
import com.gh.gamecenter.common.view.DrawableView;
|
||||||
|
import com.gh.gamecenter.core.utils.DisplayUtils;
|
||||||
import com.gh.gamecenter.core.utils.MtaHelper;
|
import com.gh.gamecenter.core.utils.MtaHelper;
|
||||||
import com.gh.gamecenter.core.utils.ToastUtils;
|
import com.gh.gamecenter.core.utils.NumberUtils;
|
||||||
import com.gh.gamecenter.feature.entity.ApkEntity;
|
import com.gh.gamecenter.databinding.KaifuDetailItemRowBinding;
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity;
|
import com.gh.gamecenter.entity.ApkEntity;
|
||||||
import com.gh.gamecenter.feature.entity.PluginLocation;
|
import com.gh.gamecenter.entity.GameEntity;
|
||||||
import com.gh.gamecenter.feature.entity.TagStyleEntity;
|
import com.gh.gamecenter.common.entity.LinkEntity;
|
||||||
import com.gh.gamecenter.feature.entity.TestEntity;
|
import com.gh.gamecenter.entity.PluginLocation;
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent;
|
import com.gh.gamecenter.entity.ServerCalendarEntity;
|
||||||
import com.gh.gamecenter.feature.utils.PlatformUtils;
|
import com.gh.gamecenter.entity.TagStyleEntity;
|
||||||
import com.gh.gamecenter.feature.view.DownloadButton;
|
import com.gh.gamecenter.entity.TestEntity;
|
||||||
import com.gh.gamecenter.feature.view.GameIconView;
|
import com.gh.gamecenter.common.eventbus.EBReuse;
|
||||||
import com.gh.gamecenter.gamedetail.dialog.GamePermissionDialogFragment;
|
import com.gh.gamecenter.gamedetail.dialog.GamePermissionDialogFragment;
|
||||||
import com.gh.gamecenter.manager.PackagesManager;
|
import com.gh.gamecenter.manager.PackagesManager;
|
||||||
|
import com.gh.gamecenter.qa.entity.CommunityVideoEntity;
|
||||||
|
import com.gh.vspace.VDownloadManagerActivity;
|
||||||
import com.gh.vspace.VHelper;
|
import com.gh.vspace.VHelper;
|
||||||
import com.lightgame.download.DownloadEntity;
|
import com.lightgame.download.DownloadEntity;
|
||||||
|
import com.lightgame.download.FileUtils;
|
||||||
import com.lightgame.utils.Utils;
|
import com.lightgame.utils.Utils;
|
||||||
|
|
||||||
|
import org.greenrobot.eventbus.EventBus;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import kotlin.collections.CollectionsKt;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by khy on 12/02/18.
|
* Created by khy on 12/02/18.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class BindingAdapters {
|
public class BindingAdapters {
|
||||||
|
|
||||||
|
public static void loadIcon(SimpleDraweeView view, String imageUrl) {
|
||||||
|
ImageUtils.displayIcon(view, imageUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void loadImage(SimpleDraweeView view, String imageUrl) {
|
||||||
|
ImageUtils.display(view, imageUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setTextSize(TextView view, int number) {
|
||||||
|
view.setTextSize(number);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setTypeface(TextView view, String type) {
|
||||||
|
if (type == null) return;
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case "bold":
|
||||||
|
view.setTypeface(null, Typeface.BOLD);
|
||||||
|
break;
|
||||||
|
case "italic":
|
||||||
|
view.setTypeface(null, Typeface.ITALIC);
|
||||||
|
break;
|
||||||
|
case "bold_italic":
|
||||||
|
view.setTypeface(null, Typeface.BOLD_ITALIC);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
view.setTypeface(null, Typeface.NORMAL);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void addDetailKaiFuView(LinearLayout view, List<ServerCalendarEntity> list
|
||||||
|
, OnViewClickListener listener, Boolean isReadyPatch) {
|
||||||
|
if (list == null) return;
|
||||||
|
view.removeAllViews();
|
||||||
|
for (int i = 0; i < list.size() + 1; i++) { // 1 is Title
|
||||||
|
View inflate = LayoutInflater.from(view.getContext()).inflate(R.layout.kaifu_detail_item_row, null);
|
||||||
|
KaifuDetailItemRowBinding binding = KaifuDetailItemRowBinding.bind(inflate);
|
||||||
|
binding.getRoot().setBackgroundColor(isReadyPatch != null && isReadyPatch ? ExtensionsKt.toColor(R.color.theme) : ExtensionsKt.toColor(R.color.white));
|
||||||
|
binding.getRoot().setPadding(DisplayUtils.dip2px(1), DisplayUtils.dip2px(1), DisplayUtils.dip2px(1), i == list.size() ? DisplayUtils.dip2px(1) : 0);
|
||||||
|
ServerCalendarEntity serverEntity = list.get(i - 1);
|
||||||
|
binding.timeTv.setText(i == 0 ? "时间" : serverEntity.getFormatTime("HH:mm"));
|
||||||
|
binding.remarkTv.setText(i == 0 ? "备注" : serverEntity.getRemark());
|
||||||
|
binding.nameTv.setText(i == 0 ? "名字" : (TextUtils.isEmpty(serverEntity.getNote()) ? "-" : serverEntity.getNote()));
|
||||||
|
if (i != 0) {
|
||||||
|
binding.getRoot().setOnClickListener(v -> {
|
||||||
|
listener.onClick(v, isReadyPatch != null && isReadyPatch ? serverEntity : null);
|
||||||
|
});
|
||||||
|
|
||||||
|
// 滑动冲突处理
|
||||||
|
binding.getRoot().setOnTouchListener((v, event) -> {
|
||||||
|
if (list.size() > 5) {
|
||||||
|
if (event.getAction() == MotionEvent.ACTION_DOWN) {
|
||||||
|
EventBus.getDefault().post(new EBReuse("CalenderDown"));
|
||||||
|
} else if (event.getAction() == MotionEvent.ACTION_UP || event.getAction() == MotionEvent.ACTION_CANCEL) {
|
||||||
|
EventBus.getDefault().post(new EBReuse("CalenderCancel"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
view.addView(inflate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果超过10000,则转换为1.0W
|
||||||
|
public static void transSimpleCount(TextView view, int count) {
|
||||||
|
view.setText(NumberUtils.transSimpleCount(count));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void textColorFromString(TextView tv, String hexString) {
|
||||||
|
if (TextUtils.isEmpty(hexString)) return;
|
||||||
|
|
||||||
|
try {
|
||||||
|
tv.setTextColor(Color.parseColor(hexString));
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void showHide(View view, Boolean show) {
|
||||||
|
if (show != null && show) {
|
||||||
|
view.setVisibility(View.VISIBLE);
|
||||||
|
} else {
|
||||||
|
view.setVisibility(View.GONE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void goneIf(View view, Boolean gone) {
|
||||||
|
if (gone != null && gone) {
|
||||||
|
view.setVisibility(View.GONE);
|
||||||
|
} else {
|
||||||
|
view.setVisibility(View.VISIBLE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* lazy 的 paddingTop
|
||||||
|
*/
|
||||||
|
public static void lazyPaddingLeft(View view, int paddingLeftInDp) {
|
||||||
|
view.setPadding(DisplayUtils.dip2px(paddingLeftInDp), view.getPaddingTop(), view.getPaddingRight(), view.getPaddingBottom());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* lazy 的 paddingTop
|
||||||
|
*/
|
||||||
|
public static void lazyPaddingTop(View view, int paddingTopInDp) {
|
||||||
|
view.setPadding(view.getPaddingLeft(), DisplayUtils.dip2px(paddingTopInDp), view.getPaddingRight(), view.getPaddingBottom());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* lazy 的 paddingBottom
|
||||||
|
*/
|
||||||
|
public static void lazyPaddingBottom(View view, int paddingBottomInDp) {
|
||||||
|
view.setPadding(view.getPaddingLeft(), view.getPaddingTop(), view.getPaddingRight(), DisplayUtils.dip2px(paddingBottomInDp));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void visibleInvisible(View view, Boolean show) {
|
||||||
|
if (show != null && show) {
|
||||||
|
view.setVisibility(View.VISIBLE);
|
||||||
|
} else {
|
||||||
|
view.setVisibility(View.INVISIBLE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void setMessageUnread(TextView view, int unreadCount) {
|
public static void setMessageUnread(TextView view, int unreadCount) {
|
||||||
if (unreadCount < 100) {
|
if (unreadCount < 100) {
|
||||||
view.setText(String.valueOf(unreadCount));
|
view.setText(String.valueOf(unreadCount));
|
||||||
@ -92,19 +227,117 @@ public class BindingAdapters {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void setServerTypePadding(TextView view, String serverType) {
|
||||||
|
int paddRight = 0;
|
||||||
|
if (TextUtils.isEmpty(serverType)) {
|
||||||
|
} else {
|
||||||
|
if ("删档内测".equals(serverType) || "不删档内测".equals(serverType)) {
|
||||||
|
if ("删档内测".equals(serverType)) {
|
||||||
|
paddRight = DisplayUtils.dip2px(view.getContext(), 50);
|
||||||
|
} else {
|
||||||
|
paddRight = DisplayUtils.dip2px(view.getContext(), 60);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
paddRight = DisplayUtils.dip2px(view.getContext(), 30);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
view.setPadding(0, 0, paddRight, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setServerType(TextView view, String serverType) {
|
||||||
|
view.setText(serverType);
|
||||||
|
if ("删档内测".equals(serverType) || "不删档内测".equals(serverType)) {
|
||||||
|
view.setBackgroundResource(R.drawable.textview_server_tag);
|
||||||
|
} else {
|
||||||
|
view.setBackgroundResource(R.drawable.textview_orange_up);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void setGame(View view, GameEntity gameEntity) {
|
public static void setGame(View view, GameEntity gameEntity) {
|
||||||
if (gameEntity != null && view instanceof GameIconView) {
|
if (gameEntity != null && view instanceof GameIconView) {
|
||||||
((GameIconView) view).displayGameIcon(gameEntity);
|
((GameIconView) view).displayGameIcon(gameEntity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setDownloadButton(DownloadButton progressBar,
|
public static void setGameIcon(View view, GameEntity gameEntity) {
|
||||||
GameEntity gameEntity,
|
if (gameEntity != null && view instanceof GameIconView) {
|
||||||
ExposureEvent traceEvent,
|
((GameIconView) view).displayGameIcon(gameEntity.getIcon(), gameEntity.getIconSubscript());
|
||||||
@Nullable View.OnClickListener clickCallBack,
|
}
|
||||||
@Nullable String entrance,
|
}
|
||||||
@Nullable String location) {
|
|
||||||
setDownloadButton(progressBar, gameEntity, traceEvent, clickCallBack, entrance, location, "其他");
|
public static void setArticleType(TextView view, String articleType) {
|
||||||
|
NewsUtils.setNewsType(view, articleType, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setDetailDownloadText(TextView view, GameEntity gameEntity) {
|
||||||
|
if (gameEntity == null || gameEntity.getApk().isEmpty()) {
|
||||||
|
view.setBackgroundResource(R.drawable.game_item_btn_pause_style);
|
||||||
|
view.setTextColor(0xFF999999);
|
||||||
|
view.setClickable(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setLiBaoBtn(TextView view, String status) {
|
||||||
|
if (TextUtils.isEmpty(status)) return;
|
||||||
|
switch (status) {
|
||||||
|
case "coming":
|
||||||
|
view.setText(R.string.libao_coming);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_blue_style);
|
||||||
|
break;
|
||||||
|
case "ling":
|
||||||
|
view.setText(R.string.libao_ling);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_green_style);
|
||||||
|
break;
|
||||||
|
case "tao":
|
||||||
|
view.setText(R.string.libao_tao);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_orange_style);
|
||||||
|
break;
|
||||||
|
case "used_up":
|
||||||
|
view.setText(R.string.libao_used_up);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_cancel_up);
|
||||||
|
break;
|
||||||
|
case "finish":
|
||||||
|
view.setText(R.string.libao_finish);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_cancel_up);
|
||||||
|
break;
|
||||||
|
case "linged":
|
||||||
|
view.setText(R.string.libao_linged);
|
||||||
|
view.setBackgroundResource(R.drawable.libao_linged_style);
|
||||||
|
view.setTextColor(ContextCompat.getColorStateList(view.getContext(), R.color.libao_linged_selector));
|
||||||
|
break;
|
||||||
|
case "taoed":
|
||||||
|
view.setText(R.string.libao_taoed);
|
||||||
|
view.setBackgroundResource(R.drawable.libao_taoed_style);
|
||||||
|
view.setTextColor(ContextCompat.getColorStateList(view.getContext(), R.color.libao_taoed_selector));
|
||||||
|
break;
|
||||||
|
case "copy":
|
||||||
|
view.setText(R.string.libao_copy);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_blue_style);
|
||||||
|
break;
|
||||||
|
case "repeatLing":
|
||||||
|
view.setText(R.string.libao_repeat_ling);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_cancel_up);
|
||||||
|
break;
|
||||||
|
case "repeatLinged":
|
||||||
|
view.setText(R.string.libao_repeat_ling);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_green_style);
|
||||||
|
break;
|
||||||
|
case "repeatTao":
|
||||||
|
view.setText(R.string.libao_repeat_tao);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_cancel_up);
|
||||||
|
break;
|
||||||
|
case "repeatTaoed":
|
||||||
|
view.setText(R.string.libao_repeat_tao);
|
||||||
|
view.setBackgroundResource(R.drawable.textview_orange_style);
|
||||||
|
break;
|
||||||
|
case "unshelve":
|
||||||
|
view.setBackgroundResource(R.drawable.textview_cancel_style);
|
||||||
|
view.setText(R.string.libao_unshelve);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
view.setBackgroundResource(R.drawable.textview_cancel_style);
|
||||||
|
view.setText("异常");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 大图下的进度条
|
// 大图下的进度条
|
||||||
@ -113,14 +346,14 @@ public class BindingAdapters {
|
|||||||
ExposureEvent traceEvent,
|
ExposureEvent traceEvent,
|
||||||
@Nullable View.OnClickListener clickCallBack,
|
@Nullable View.OnClickListener clickCallBack,
|
||||||
@Nullable String entrance,
|
@Nullable String entrance,
|
||||||
@Nullable String location,
|
@Nullable String location) {
|
||||||
String sourceEntrance) {
|
|
||||||
|
|
||||||
// 恢复DialogFragment
|
// 恢复DialogFragment
|
||||||
restoreDialogFragment(progressBar);
|
restoreDialogFragment(progressBar);
|
||||||
|
|
||||||
// 判断是否显示按钮
|
// 判断是否显示按钮
|
||||||
if (gameEntity != null
|
if (gameEntity != null
|
||||||
|
&& Config.isShowDownload(gameEntity.getId())
|
||||||
&& !"光环助手".equals(gameEntity.getName())) {
|
&& !"光环助手".equals(gameEntity.getName())) {
|
||||||
progressBar.setVisibility(View.VISIBLE);
|
progressBar.setVisibility(View.VISIBLE);
|
||||||
} else {
|
} else {
|
||||||
@ -134,9 +367,13 @@ public class BindingAdapters {
|
|||||||
switch (progressBar.getButtonStyle()) {
|
switch (progressBar.getButtonStyle()) {
|
||||||
case DOWNLOADING_PLUGIN:
|
case DOWNLOADING_PLUGIN:
|
||||||
case DOWNLOADING_NORMAL:
|
case DOWNLOADING_NORMAL:
|
||||||
Intent intent = DownloadManagerActivity.getDownloadMangerIntent(v.getContext(),
|
if (gameEntity.isVGame()) {
|
||||||
gameEntity.getApk().isEmpty() ? "" : gameEntity.getApk().get(0).getUrl(), entrance);
|
v.getContext().startActivity(VDownloadManagerActivity.getIntent(v.getContext(), true));
|
||||||
v.getContext().startActivity(intent);
|
} else {
|
||||||
|
Intent intent = DownloadManagerActivity.getDownloadMangerIntent(v.getContext(),
|
||||||
|
gameEntity.getApk().get(0).getUrl(), entrance);
|
||||||
|
v.getContext().startActivity(intent);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case NONE:
|
case NONE:
|
||||||
Utils.toast(v.getContext(), "该游戏已关闭下载");
|
Utils.toast(v.getContext(), "该游戏已关闭下载");
|
||||||
@ -154,50 +391,37 @@ public class BindingAdapters {
|
|||||||
boolean isInstalled = PackageUtils.isInstalledFromAllPackage(v.getContext(), gameEntity.getSimulator().getApk().getPackageName());
|
boolean isInstalled = PackageUtils.isInstalledFromAllPackage(v.getContext(), gameEntity.getSimulator().getApk().getPackageName());
|
||||||
if (downloadEntity != null && SimulatorGameManager.isSimulatorGame(gameEntity) && !isInstalled) {
|
if (downloadEntity != null && SimulatorGameManager.isSimulatorGame(gameEntity) && !isInstalled) {
|
||||||
SimulatorDownloadManager.getInstance().showDownloadDialog(v.getContext(), gameEntity.getSimulator(),
|
SimulatorDownloadManager.getInstance().showDownloadDialog(v.getContext(), gameEntity.getSimulator(),
|
||||||
SimulatorDownloadManager.SimulatorLocation.LAUNCH, gameEntity.getId(), gameEntity.getName(), gameEntity.getCategoryChinese(), null);
|
SimulatorDownloadManager.SimulatorLocation.LAUNCH, gameEntity.getId(), gameEntity.getName(), null);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DownloadChainBuilder builder = new DownloadChainBuilder();
|
ChainBuilder builder = new ChainBuilder();
|
||||||
builder.addHandler(new UnsupportedFeatureHandler());
|
|
||||||
builder.addHandler(new GamePermissionHandler());
|
|
||||||
builder.addHandler(new CheckStoragePermissionHandler());
|
|
||||||
builder.addHandler(new ValidateVSpaceHandler());
|
builder.addHandler(new ValidateVSpaceHandler());
|
||||||
|
builder.addHandler(new GamePermissionHandler());
|
||||||
builder.addHandler(new BrowserInstallHandler());
|
builder.addHandler(new BrowserInstallHandler());
|
||||||
builder.addHandler(new PackageCheckHandler());
|
builder.addHandler(new PackageCheckHandler());
|
||||||
builder.addHandler(new DownloadDialogHelperHandler());
|
builder.addHandler(new DownloadDialogHelperHandler());
|
||||||
|
builder.addHandler(new CertificationHandler());
|
||||||
builder.addHandler(new VersionNumberHandler());
|
builder.addHandler(new VersionNumberHandler());
|
||||||
builder.addHandler(new LandPageAddressHandler());
|
|
||||||
builder.addHandler(new OverseaDownloadHandler());
|
builder.addHandler(new OverseaDownloadHandler());
|
||||||
builder.addHandler(new CheckDownloadHandler());
|
builder.addHandler(new CheckDownloadHandler());
|
||||||
|
|
||||||
builder.setProcessEndCallback((asVGame, isSubscribe) -> {
|
builder.setProcessEndCallback(o -> {
|
||||||
download(v.getContext(),
|
download(progressBar, gameEntity, traceEvent, (boolean) o, entrance, location);
|
||||||
progressBar,
|
|
||||||
gameEntity,
|
|
||||||
traceEvent,
|
|
||||||
asVGame,
|
|
||||||
(boolean) isSubscribe,
|
|
||||||
entrance,
|
|
||||||
location);
|
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
final DownloadChainHandler chainHandler = builder.buildHandlerChain();
|
final ChainHandler chainHandler = builder.buildHandlerChain();
|
||||||
if (chainHandler != null) {
|
if (chainHandler != null) {
|
||||||
chainHandler.handleRequest(
|
chainHandler.handleRequest(v.getContext(), gameEntity);
|
||||||
v.getContext(),
|
|
||||||
gameEntity,
|
|
||||||
GameUtils.shouldPerformAsVGame(gameEntity)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
DownloadChainBuilder builder = new DownloadChainBuilder();
|
ChainBuilder builder = new ChainBuilder();
|
||||||
builder.addHandler(new UnsupportedFeatureHandler());
|
|
||||||
builder.addHandler(new GamePermissionHandler());
|
builder.addHandler(new GamePermissionHandler());
|
||||||
|
builder.addHandler(new CertificationHandler());
|
||||||
builder.addHandler(new VersionNumberHandler());
|
builder.addHandler(new VersionNumberHandler());
|
||||||
|
|
||||||
builder.setProcessEndCallback((asVGame, isSubscribe) -> {
|
builder.setProcessEndCallback(o -> {
|
||||||
DownloadDialog.showDownloadDialog(
|
DownloadDialog.showDownloadDialog(
|
||||||
v.getContext(),
|
v.getContext(),
|
||||||
gameEntity,
|
gameEntity,
|
||||||
@ -206,13 +430,9 @@ public class BindingAdapters {
|
|||||||
location + ":" + gameEntity.getName());
|
location + ":" + gameEntity.getName());
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
final DownloadChainHandler chainHandler = builder.buildHandlerChain();
|
final ChainHandler chainHandler = builder.buildHandlerChain();
|
||||||
if (chainHandler != null) {
|
if (chainHandler != null) {
|
||||||
chainHandler.handleRequest(
|
chainHandler.handleRequest(v.getContext(), gameEntity);
|
||||||
v.getContext(),
|
|
||||||
gameEntity,
|
|
||||||
GameUtils.shouldPerformAsVGame(gameEntity)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -221,18 +441,11 @@ public class BindingAdapters {
|
|||||||
if (gameEntity.getApk().size() == 1) {
|
if (gameEntity.getApk().size() == 1) {
|
||||||
//启动模拟器游戏
|
//启动模拟器游戏
|
||||||
if (SimulatorGameManager.isSimulatorGame(gameEntity)) {
|
if (SimulatorGameManager.isSimulatorGame(gameEntity)) {
|
||||||
DownloadEntity downloadEntity = SimulatorGameManager.findDownloadEntityByUrl(gameEntity.getApk().isEmpty() ? "" : gameEntity.getApk().get(0).getUrl());
|
DownloadEntity downloadEntity = SimulatorGameManager.findDownloadEntityByUrl(gameEntity.getApk().get(0).getUrl());
|
||||||
if (downloadEntity != null) {
|
if (downloadEntity != null) {
|
||||||
File file = new File(downloadEntity.getPath());
|
File file = new File(downloadEntity.getPath());
|
||||||
if (!file.exists()) {
|
if (!file.exists()) {
|
||||||
download(v.getContext(),
|
download(progressBar, gameEntity, traceEvent, false, entrance, location);
|
||||||
progressBar,
|
|
||||||
gameEntity,
|
|
||||||
traceEvent,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
entrance,
|
|
||||||
location);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -241,7 +454,12 @@ public class BindingAdapters {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
PackageLauncher.launch(v.getContext(), gameEntity, null);
|
if (gameEntity.isVGame()) {
|
||||||
|
VHelper.installOrLaunch((AppCompatActivity) v.getContext(), gameEntity.getApk().get(0).getPackageName());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
PackageUtils.launchApplicationByPackageName(v.getContext(), gameEntity.getApk().get(0).getPackageName());
|
||||||
} else {
|
} else {
|
||||||
DownloadDialog.showDownloadDialog(
|
DownloadDialog.showDownloadDialog(
|
||||||
v.getContext(),
|
v.getContext(),
|
||||||
@ -254,34 +472,23 @@ public class BindingAdapters {
|
|||||||
case INSTALL_PLUGIN:
|
case INSTALL_PLUGIN:
|
||||||
case INSTALL_NORMAL:
|
case INSTALL_NORMAL:
|
||||||
if (gameEntity.getApk().size() == 1) {
|
if (gameEntity.getApk().size() == 1) {
|
||||||
|
|
||||||
NewFlatLogUtils.INSTANCE.logGameInstall(
|
|
||||||
gameEntity.getId(),
|
|
||||||
gameEntity.getName() != null ? gameEntity.getName() : "",
|
|
||||||
"主动安装"
|
|
||||||
);
|
|
||||||
|
|
||||||
SensorsBridge.trackInstallGameClick(
|
|
||||||
gameEntity.getId(),
|
|
||||||
gameEntity.getName() != null ? gameEntity.getName() : "",
|
|
||||||
"主动安装"
|
|
||||||
);
|
|
||||||
|
|
||||||
DownloadEntity downloadEntity = DownloadManager.getInstance().getDownloadEntitySnapshot(gameEntity);
|
DownloadEntity downloadEntity = DownloadManager.getInstance().getDownloadEntitySnapshot(gameEntity);
|
||||||
|
String packageName = gameEntity.getApk().get(0).getPackageName();
|
||||||
|
|
||||||
|
if (gameEntity.isVGame()) {
|
||||||
|
VHelper.installOrLaunch(v.getContext(), packageName);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (downloadEntity != null) {
|
if (downloadEntity != null) {
|
||||||
if (ExtensionsKt.isLocalDownloadInDualDownloadMode(downloadEntity)) {
|
PackageInstaller.install(v.getContext(), downloadEntity);
|
||||||
PackageInstaller.install(v.getContext(), downloadEntity);
|
|
||||||
} else {
|
|
||||||
VHelper.installOrLaunch(v.getContext(), gameEntity, null);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case RESERVABLE:
|
case RESERVABLE:
|
||||||
GamePermissionDialogFragment.show((AppCompatActivity) v.getContext(), gameEntity, gameEntity.getInfo(), () -> {
|
GamePermissionDialogFragment.show((AppCompatActivity) v.getContext(), gameEntity, gameEntity.getInfo(), () -> {
|
||||||
CheckLoginUtils.checkLogin(progressBar.getContext(), "", () -> {
|
CheckLoginUtils.checkLogin(progressBar.getContext(), "", () -> {
|
||||||
ReservationHelper.reserve(v.getContext(), gameEntity, sourceEntrance, () -> {
|
ReservationHelper.reserve(v.getContext(), gameEntity.getId(), () -> {
|
||||||
LogUtils.logReservation(gameEntity, traceEvent);
|
LogUtils.logReservation(gameEntity, traceEvent);
|
||||||
updateReservation(progressBar, gameEntity);
|
updateReservation(progressBar, gameEntity);
|
||||||
});
|
});
|
||||||
@ -360,7 +567,7 @@ public class BindingAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
String status = GameUtils.getDownloadBtnText(progressBar.getContext(), gameEntity, true, false, PluginLocation.only_game);
|
String status = GameUtils.getDownloadBtnText(progressBar.getContext(), gameEntity, PluginLocation.only_game);
|
||||||
switch (status) {
|
switch (status) {
|
||||||
case "插件化":
|
case "插件化":
|
||||||
progressBar.setButtonStyle(DownloadButton.ButtonStyle.PLUGIN);
|
progressBar.setButtonStyle(DownloadButton.ButtonStyle.PLUGIN);
|
||||||
@ -386,11 +593,9 @@ public class BindingAdapters {
|
|||||||
case pause:
|
case pause:
|
||||||
case timeout:
|
case timeout:
|
||||||
case neterror:
|
case neterror:
|
||||||
case diskisfull:
|
|
||||||
case diskioerror:
|
|
||||||
case waiting:
|
case waiting:
|
||||||
progressBar.setText(R.string.downloading);
|
progressBar.setText(R.string.downloading);
|
||||||
if (downloadEntity.isPluggable() && PackagesManager.isInstalled(downloadEntity.getPackageName())) {
|
if (downloadEntity.isPluggable() && PackagesManager.INSTANCE.isInstalled(downloadEntity.getPackageName())) {
|
||||||
progressBar.setButtonStyle(DownloadButton.ButtonStyle.DOWNLOADING_PLUGIN);
|
progressBar.setButtonStyle(DownloadButton.ButtonStyle.DOWNLOADING_PLUGIN);
|
||||||
} else {
|
} else {
|
||||||
progressBar.setButtonStyle(DownloadButton.ButtonStyle.DOWNLOADING_NORMAL);
|
progressBar.setButtonStyle(DownloadButton.ButtonStyle.DOWNLOADING_NORMAL);
|
||||||
@ -399,7 +604,7 @@ public class BindingAdapters {
|
|||||||
case done:
|
case done:
|
||||||
progressBar.setText(R.string.install);
|
progressBar.setText(R.string.install);
|
||||||
if (downloadEntity.isPluggable()
|
if (downloadEntity.isPluggable()
|
||||||
&& PackagesManager.isInstalled(downloadEntity.getPackageName())) {
|
&& PackagesManager.INSTANCE.isInstalled(downloadEntity.getPackageName())) {
|
||||||
progressBar.setButtonStyle(DownloadButton.ButtonStyle.INSTALL_PLUGIN);
|
progressBar.setButtonStyle(DownloadButton.ButtonStyle.INSTALL_PLUGIN);
|
||||||
} else {
|
} else {
|
||||||
progressBar.setButtonStyle(DownloadButton.ButtonStyle.INSTALL_NORMAL);
|
progressBar.setButtonStyle(DownloadButton.ButtonStyle.INSTALL_NORMAL);
|
||||||
@ -432,6 +637,24 @@ public class BindingAdapters {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*private static void download(DownloadProgressBar progressBar, GameEntity gameEntity, ExposureEvent traceEvent, @Nullable String entrance, @Nullable String location, View v) {
|
||||||
|
if (gameEntity.getApk().size() == 1) {
|
||||||
|
ApkEntity apk = gameEntity.getApk().get(0);
|
||||||
|
DownloadDialogHelper.findAvailableDialogAndShow(
|
||||||
|
v.getContext(),
|
||||||
|
gameEntity,
|
||||||
|
apk,
|
||||||
|
() -> {
|
||||||
|
DialogUtils.checkDownload(v.getContext(), apk.getSize(),
|
||||||
|
isSubscribe -> download(progressBar, gameEntity, traceEvent, isSubscribe, entrance, location));
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
DownloadDialog.getInstance(v.getContext()).showPopupWindow(v, gameEntity,
|
||||||
|
entrance, location + gameEntity.getName(), traceEvent);
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
|
||||||
|
|
||||||
private static void updateReservation(DownloadButton progressBar, GameEntity gameEntity) {
|
private static void updateReservation(DownloadButton progressBar, GameEntity gameEntity) {
|
||||||
// 显示预约
|
// 显示预约
|
||||||
if (gameEntity.isReservable()) {
|
if (gameEntity.isReservable()) {
|
||||||
@ -447,39 +670,45 @@ public class BindingAdapters {
|
|||||||
|
|
||||||
|
|
||||||
// 开始下载
|
// 开始下载
|
||||||
private static void download(Context context,
|
private static void download(DownloadButton progressBar,
|
||||||
DownloadButton progressBar,
|
|
||||||
GameEntity gameEntity,
|
GameEntity gameEntity,
|
||||||
ExposureEvent traceEvent,
|
ExposureEvent traceEvent,
|
||||||
boolean asVGame,
|
|
||||||
boolean isSubscribe,
|
boolean isSubscribe,
|
||||||
String entrance,
|
String entrance,
|
||||||
String location) {
|
String location) {
|
||||||
if (BrowserInstallHelper.shouldAutoSwitchAssistantInstall(gameEntity)) {
|
String str = progressBar.getText().toString();
|
||||||
ToastUtils.toast(context.getString(R.string.unsupported_browser_install_hint));
|
String method;
|
||||||
|
if (str.contains("更新")) {
|
||||||
|
method = "更新";
|
||||||
|
} else if (str.contains("插件化")) {
|
||||||
|
method = "插件化";
|
||||||
|
} else {
|
||||||
|
method = progressBar.getContext().getString(R.string.download);
|
||||||
}
|
}
|
||||||
String buttonText = progressBar.getText();
|
ApkEntity apkEntity = gameEntity.getApk().get(0);
|
||||||
ApkEntity apkEntity = CollectionsKt.firstOrNull(gameEntity.getApk());
|
String msg = FileUtils.isCanDownload(progressBar.getContext(), apkEntity.getSize());
|
||||||
String msg = FileUtils.isCanDownload(progressBar.getContext(), apkEntity == null ? "" : apkEntity.getSize());
|
if (TextUtils.isEmpty(msg)) {
|
||||||
if (apkEntity != null && TextUtils.isEmpty(msg)) {
|
|
||||||
DownloadManager.createDownload(progressBar.getContext(),
|
DownloadManager.createDownload(progressBar.getContext(),
|
||||||
apkEntity,
|
apkEntity,
|
||||||
gameEntity,
|
gameEntity,
|
||||||
asVGame,
|
method,
|
||||||
gameEntity.isDualBtnModeEnabled(),
|
|
||||||
entrance,
|
entrance,
|
||||||
location + gameEntity.getName(),
|
location + gameEntity.getName(),
|
||||||
isSubscribe,
|
isSubscribe,
|
||||||
traceEvent);
|
traceEvent);
|
||||||
|
|
||||||
progressBar.setProgress(0);
|
progressBar.setProgress(0);
|
||||||
progressBar.setButtonStyle(buttonText.contains("插件化") ?
|
progressBar.setButtonStyle("插件化".equals(method) ?
|
||||||
DownloadButton.ButtonStyle.DOWNLOADING_PLUGIN : DownloadButton.ButtonStyle.DOWNLOADING_NORMAL);
|
DownloadButton.ButtonStyle.DOWNLOADING_PLUGIN : DownloadButton.ButtonStyle.DOWNLOADING_NORMAL);
|
||||||
} else {
|
} else {
|
||||||
Utils.toast(progressBar.getContext(), msg);
|
Utils.toast(progressBar.getContext(), msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void setGameLabelList(LinearLayout layout, List<TagStyleEntity> tagStyle) {
|
||||||
|
GameViewUtils.setLabelList(layout.getContext(), layout, tagStyle);
|
||||||
|
}
|
||||||
|
|
||||||
// 包含测试开服标签
|
// 包含测试开服标签
|
||||||
public static void setGameTags(LinearLayout layout, GameEntity gameEntity) {
|
public static void setGameTags(LinearLayout layout, GameEntity gameEntity) {
|
||||||
try {
|
try {
|
||||||
@ -549,26 +778,48 @@ public class BindingAdapters {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setGameName(TextView view, GameEntity game, boolean isShowPlatform) {
|
public static void isRefreshing(SwipeRefreshLayout layout, LoadStatus status) {
|
||||||
String gameName;
|
if (status != LoadStatus.INIT_LOADING && status != LoadStatus.LIST_LOADING) {
|
||||||
|
layout.setRefreshing(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setGameName(TextView view, GameEntity game, boolean isShowPlatform, @Nullable Boolean isShowSuffix) {
|
||||||
|
if (isShowSuffix == null) isShowSuffix = true; // 默认显示
|
||||||
if (isShowPlatform && game.getApk().size() > 0) {
|
if (isShowPlatform && game.getApk().size() > 0) {
|
||||||
gameName = String.format("%s - %s", game.getName(),
|
view.setText(String.format("%s - %s", !isShowSuffix ? game.getNameWithoutSuffix() : game.getName(),
|
||||||
PlatformUtils.getInstance(view.getContext()).getPlatformName(
|
PlatformUtils.getInstance(view.getContext()).getPlatformName(
|
||||||
game.getApk().get(0).getPlatform()));
|
game.getApk().get(0).getPlatform())));
|
||||||
if (!gameName.equals((String) view.getTag(R.string.tag_game_name_id))) {
|
|
||||||
view.setText(gameName);
|
|
||||||
view.setTag(R.string.tag_game_name_id, gameName);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
gameName = game.getName();
|
view.setText(!isShowSuffix ? game.getNameWithoutSuffix() : game.getName());
|
||||||
if (gameName != null && !gameName.equals((String) view.getTag(R.string.tag_game_name_id))) {
|
|
||||||
view.setText(gameName);
|
|
||||||
view.setTag(R.string.tag_game_name_id, gameName);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void setCommunityImage(SimpleDraweeView imageView, List<String> images, List<CommunityVideoEntity> videos) {
|
||||||
|
if (videos.size() > 0) {
|
||||||
|
CommunityVideoEntity videoEntity = videos.get(0);
|
||||||
|
ImageUtils.display(imageView, videoEntity.getPoster());
|
||||||
|
imageView.setVisibility(View.VISIBLE);
|
||||||
|
} else if (images.size() > 0) {
|
||||||
|
imageView.setVisibility(View.VISIBLE);
|
||||||
|
ImageUtils.display(imageView, images.get(0));
|
||||||
|
} else {
|
||||||
|
imageView.setVisibility(View.GONE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setCommunityVideoDuration(TextView mVideoDuration, List<CommunityVideoEntity> videos) {
|
||||||
|
if (videos != null && videos.size() > 0) {
|
||||||
|
CommunityVideoEntity videoEntity = videos.get(0);
|
||||||
|
mVideoDuration.setBackground(DrawableView.getOvalDrawable(R.color.black_alpha_50, 999F));
|
||||||
|
mVideoDuration.setText(videoEntity.getDuration());
|
||||||
|
mVideoDuration.setVisibility(View.VISIBLE);
|
||||||
|
} else {
|
||||||
|
mVideoDuration.setVisibility(View.GONE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void setGameTags(TextView view, List<TagStyleEntity> tags, int maxTags) {
|
public static void setGameTags(TextView view, List<TagStyleEntity> tags, int maxTags) {
|
||||||
if (tags == null) {
|
if (tags == null) {
|
||||||
view.setText("");
|
view.setText("");
|
||||||
@ -591,9 +842,21 @@ public class BindingAdapters {
|
|||||||
int start = index;
|
int start = index;
|
||||||
int end = start + tag.getName().length() + ((i != showCount - 1) ? 1 : 0);
|
int end = start + tag.getName().length() + ((i != showCount - 1) ? 1 : 0);
|
||||||
index = end;
|
index = end;
|
||||||
span.setSpan(new ForegroundColorSpan(ExtensionsKt.hexStringToIntColor("#" + tag.getColor(), Color.WHITE)),
|
span.setSpan(new ForegroundColorSpan(Color.parseColor("#" + tag.getColor())),
|
||||||
start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
|
start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
}
|
}
|
||||||
view.setText(span);
|
view.setText(span);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void setVideoData(TextView view, int count) {
|
||||||
|
if (count > 0) {
|
||||||
|
view.setCompoundDrawablesWithIntrinsicBounds(ContextCompat.getDrawable(view.getContext(), R.drawable.ic_video_data_up), null, null, null);
|
||||||
|
view.setTextColor(ContextCompat.getColor(view.getContext(), R.color.text_EA3333));
|
||||||
|
view.setText(count + "");
|
||||||
|
} else {
|
||||||
|
view.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null);
|
||||||
|
view.setTextColor(ContextCompat.getColor(view.getContext(), R.color.text_subtitleDesc));
|
||||||
|
view.setText("-");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -49,7 +49,7 @@ class ApplyModeratorDialogFragment : BaseDialogFragment() {
|
|||||||
requireContext(),
|
requireContext(),
|
||||||
startText.length,
|
startText.length,
|
||||||
startText.length + mGroupNumber.length,
|
startText.length + mGroupNumber.length,
|
||||||
R.color.text_theme,
|
R.color.theme_font,
|
||||||
true
|
true
|
||||||
) {
|
) {
|
||||||
DirectUtils.directToQqGroup(
|
DirectUtils.directToQqGroup(
|
||||||
|
|||||||
204
app/src/main/java/com/gh/common/dialog/CertificationDialog.kt
Normal file
204
app/src/main/java/com/gh/common/dialog/CertificationDialog.kt
Normal file
@ -0,0 +1,204 @@
|
|||||||
|
package com.gh.common.dialog
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint
|
||||||
|
import android.app.Activity
|
||||||
|
import android.app.Dialog
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.graphics.Color
|
||||||
|
import android.graphics.Paint
|
||||||
|
import android.graphics.drawable.ColorDrawable
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.widget.CheckBox
|
||||||
|
import android.widget.TextView
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import com.gh.gamecenter.common.avoidcallback.AvoidOnResultManager
|
||||||
|
import com.gh.gamecenter.common.avoidcallback.Callback
|
||||||
|
import com.gh.gamecenter.common.constant.Constants
|
||||||
|
import com.gh.common.util.*
|
||||||
|
import com.gh.gamecenter.R
|
||||||
|
import com.gh.gamecenter.ShellActivity
|
||||||
|
import com.gh.gamecenter.common.callback.ConfirmListener
|
||||||
|
import com.gh.gamecenter.common.constant.EntranceConsts
|
||||||
|
import com.gh.gamecenter.core.utils.GsonUtils
|
||||||
|
import com.gh.gamecenter.core.utils.SPUtils
|
||||||
|
import com.gh.gamecenter.entity.AuthDialogEntity
|
||||||
|
import com.gh.gamecenter.entity.AuthDialogLevel
|
||||||
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
import com.gh.gamecenter.login.user.UserManager
|
||||||
|
import com.google.gson.reflect.TypeToken
|
||||||
|
import com.halo.assistant.fragment.user.UserInfoEditFragment
|
||||||
|
import com.lightgame.utils.AppManager
|
||||||
|
|
||||||
|
class CertificationDialog(
|
||||||
|
context: Context,
|
||||||
|
private val authDialogEntity: AuthDialogEntity,
|
||||||
|
val gameId: String,
|
||||||
|
val listener: ConfirmListener
|
||||||
|
) :
|
||||||
|
Dialog(context, R.style.GhAlertDialog) {
|
||||||
|
|
||||||
|
private lateinit var view: View
|
||||||
|
private lateinit var detailedDesTv: TextView
|
||||||
|
private lateinit var noRemindAgainCb: CheckBox
|
||||||
|
private lateinit var actionLeftTv: TextView
|
||||||
|
private lateinit var actionRightTv: TextView
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
|
||||||
|
view = LayoutInflater.from(context).inflate(R.layout.dialog_sertification, null)
|
||||||
|
setContentView(view)
|
||||||
|
detailedDesTv = view.findViewById(R.id.detailedDesTv)
|
||||||
|
noRemindAgainCb = view.findViewById(R.id.noRemindAgainCb)
|
||||||
|
actionLeftTv = view.findViewById(R.id.actionLeftTv)
|
||||||
|
actionRightTv = view.findViewById(R.id.actionRightTv)
|
||||||
|
|
||||||
|
detailedDesTv.paint.flags = Paint.UNDERLINE_TEXT_FLAG
|
||||||
|
detailedDesTv.paint.isAntiAlias = true
|
||||||
|
|
||||||
|
detailedDesTv.setOnClickListener {
|
||||||
|
DirectUtils.directToWebView(context, authDialogEntity.link)
|
||||||
|
}
|
||||||
|
|
||||||
|
when (authDialogEntity.level) {
|
||||||
|
AuthDialogLevel.MUST_PASS.value -> {
|
||||||
|
actionLeftTv.text = "暂不下载"
|
||||||
|
actionRightTv.text = "去实名认证"
|
||||||
|
noRemindAgainCb.visibility = View.GONE
|
||||||
|
actionLeftTv.setOnClickListener {
|
||||||
|
dismiss()
|
||||||
|
}
|
||||||
|
actionRightTv.setOnClickListener {
|
||||||
|
if (UserManager.getInstance().isLoggedIn) {
|
||||||
|
gotoAuthPage()
|
||||||
|
} else {
|
||||||
|
gotoLoginPage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
AuthDialogLevel.ALWAYS_HINT.value -> {
|
||||||
|
actionLeftTv.text = "去实名认证"
|
||||||
|
actionRightTv.text = "继续下载"
|
||||||
|
noRemindAgainCb.visibility = View.GONE
|
||||||
|
actionLeftTv.setOnClickListener {
|
||||||
|
if (UserManager.getInstance().isLoggedIn) {
|
||||||
|
gotoAuthPage()
|
||||||
|
} else {
|
||||||
|
gotoLoginPage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
actionRightTv.setOnClickListener {
|
||||||
|
listener.onConfirm()
|
||||||
|
dismiss()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
AuthDialogLevel.OPTIONAL_HINT.value -> {
|
||||||
|
actionLeftTv.text = "去实名认证"
|
||||||
|
actionRightTv.text = "继续下载"
|
||||||
|
noRemindAgainCb.visibility = View.VISIBLE
|
||||||
|
actionLeftTv.setOnClickListener {
|
||||||
|
if (noRemindAgainCb.isChecked) {
|
||||||
|
SPUtils.setBoolean(gameId, true)
|
||||||
|
}
|
||||||
|
if (UserManager.getInstance().isLoggedIn) {
|
||||||
|
gotoAuthPage()
|
||||||
|
} else {
|
||||||
|
gotoLoginPage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
actionRightTv.setOnClickListener {
|
||||||
|
if (noRemindAgainCb.isChecked) {
|
||||||
|
SPUtils.getBoolean(gameId, true)
|
||||||
|
}
|
||||||
|
listener.onConfirm()
|
||||||
|
dismiss()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//跳转登录页面
|
||||||
|
private fun gotoLoginPage() {
|
||||||
|
val currentActivity = AppManager.getInstance().currentActivity() ?: return
|
||||||
|
|
||||||
|
CheckLoginUtils.checkLogin(
|
||||||
|
currentActivity as AppCompatActivity,
|
||||||
|
null, true, "实名认证弹窗"
|
||||||
|
) {
|
||||||
|
if (UserManager.getInstance().isAuth) {
|
||||||
|
listener.onConfirm()
|
||||||
|
dismiss()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//跳转实名认证页面
|
||||||
|
private fun gotoAuthPage() {
|
||||||
|
val currentActivity = AppManager.getInstance().currentActivity() ?: return
|
||||||
|
|
||||||
|
AvoidOnResultManager.getInstance(currentActivity as AppCompatActivity)
|
||||||
|
.startForResult(
|
||||||
|
ShellActivity.getIntent(
|
||||||
|
context,
|
||||||
|
ShellActivity.Type.REAL_NAME_INFO,
|
||||||
|
).apply {
|
||||||
|
putExtra(EntranceConsts.KEY_GAME_ID, gameId)
|
||||||
|
}, object : Callback {
|
||||||
|
override fun onActivityResult(resultCode: Int, data: Intent?) {
|
||||||
|
if (resultCode == Activity.RESULT_OK && data != null) {
|
||||||
|
val isAuthSuccess =
|
||||||
|
data.getBooleanExtra(UserInfoEditFragment.AUTH_SUCCESS, false)
|
||||||
|
if (isAuthSuccess) {
|
||||||
|
listener.onConfirm()
|
||||||
|
dismiss()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
@JvmStatic
|
||||||
|
fun showCertificationDialog(context: Context, game: GameEntity, listener: ConfirmListener) {
|
||||||
|
//1.先判断是否登录 是执行2 否执行3
|
||||||
|
//2.判断是否实名认证 是终止 否执行3
|
||||||
|
//3.判断是否需要弹出认证弹窗接口
|
||||||
|
if (UserManager.getInstance().isLoggedIn) {
|
||||||
|
if (UserManager.getInstance().isAuth) {//已实名认证
|
||||||
|
listener.onConfirm()
|
||||||
|
} else {
|
||||||
|
authDialog(context, game, listener)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
authDialog(context, game, listener)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressLint("CheckResult")
|
||||||
|
private fun authDialog(context: Context, game: GameEntity, listener: ConfirmListener) {
|
||||||
|
var authDialog: AuthDialogEntity? = null
|
||||||
|
if (game.authDialog != null) {
|
||||||
|
authDialog = game.authDialog
|
||||||
|
}
|
||||||
|
if (authDialog == null) {
|
||||||
|
val datas = SPUtils.getString(Constants.SP_AUTH_DIALOG)
|
||||||
|
val type = object : TypeToken<List<AuthDialogEntity>>() {}.type
|
||||||
|
val authDialogs = GsonUtils.gson.fromJson<List<AuthDialogEntity>>(datas, type)
|
||||||
|
if (!authDialogs.isNullOrEmpty()) {
|
||||||
|
authDialog = authDialogs.find { it.gameCategory == game.category }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val isCloseAuthDialog = SPUtils.getBoolean(game.id, false)
|
||||||
|
if (authDialog != null && (authDialog.level != AuthDialogLevel.OPTIONAL_HINT.value || !isCloseAuthDialog)) {
|
||||||
|
val dialog = CertificationDialog(context, authDialog, game.id, listener)
|
||||||
|
dialog.show()
|
||||||
|
} else {
|
||||||
|
listener.onConfirm()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -28,7 +28,8 @@ import com.gh.gamecenter.core.utils.GsonUtils
|
|||||||
import com.gh.gamecenter.core.utils.SPUtils
|
import com.gh.gamecenter.core.utils.SPUtils
|
||||||
import com.gh.gamecenter.databinding.DialogDeviceRemindBinding
|
import com.gh.gamecenter.databinding.DialogDeviceRemindBinding
|
||||||
import com.gh.gamecenter.entity.DeviceDialogEntity
|
import com.gh.gamecenter.entity.DeviceDialogEntity
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
import com.gh.gamecenter.setting.compose.activity.ComposeGameDownloadSettingActivity
|
||||||
import com.google.gson.reflect.TypeToken
|
import com.google.gson.reflect.TypeToken
|
||||||
import com.lightgame.download.DataWatcher
|
import com.lightgame.download.DataWatcher
|
||||||
import com.lightgame.download.DownloadEntity
|
import com.lightgame.download.DownloadEntity
|
||||||
@ -52,7 +53,7 @@ class DeviceRemindDialog(context: Context, val entity: DeviceDialogEntity, val g
|
|||||||
private val dataWatcher = object : DataWatcher() {
|
private val dataWatcher = object : DataWatcher() {
|
||||||
override fun onDataChanged(downloadEntity: DownloadEntity) {
|
override fun onDataChanged(downloadEntity: DownloadEntity) {
|
||||||
if (downloadEntity.status == DownloadStatus.done && downloadEntity.name == gameEntity.name) {
|
if (downloadEntity.status == DownloadStatus.done && downloadEntity.name == gameEntity.name) {
|
||||||
val autoInstall = SPUtils.getBoolean(Constants.SP_AUTO_INSTALL, true)
|
val autoInstall = SPUtils.getBoolean(ComposeGameDownloadSettingActivity.AUTO_INSTALL_SP_KEY, true)
|
||||||
if (autoInstall) {
|
if (autoInstall) {
|
||||||
dismiss()
|
dismiss()
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,14 +16,13 @@ import com.gh.gamecenter.common.utils.dip2px
|
|||||||
import com.gh.gamecenter.common.utils.toColor
|
import com.gh.gamecenter.common.utils.toColor
|
||||||
import com.gh.gamecenter.R
|
import com.gh.gamecenter.R
|
||||||
import com.gh.gamecenter.databinding.DialogGameOffServiceBinding
|
import com.gh.gamecenter.databinding.DialogGameOffServiceBinding
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
|
||||||
// 游戏关闭下载弹窗
|
// 游戏关闭下载弹窗
|
||||||
class GameOffServiceDialogFragment : BaseDialogFragment() {
|
class GameOffServiceDialogFragment : BaseDialogFragment() {
|
||||||
|
|
||||||
private var mDialog: GameEntity.Dialog? = null
|
private var mDialog: GameEntity.Dialog? = null
|
||||||
private var mBinding: DialogGameOffServiceBinding? = null
|
private var mBinding: DialogGameOffServiceBinding? = null
|
||||||
private var mCallback: (() -> Unit)? = null
|
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
@ -45,7 +44,6 @@ class GameOffServiceDialogFragment : BaseDialogFragment() {
|
|||||||
titleTv.text = title
|
titleTv.text = title
|
||||||
contentTv.text = HtmlCompat.fromHtml(content, HtmlCompat.FROM_HTML_MODE_LEGACY)
|
contentTv.text = HtmlCompat.fromHtml(content, HtmlCompat.FROM_HTML_MODE_LEGACY)
|
||||||
okTv.setOnClickListener {
|
okTv.setOnClickListener {
|
||||||
mCallback?.invoke()
|
|
||||||
dismissAllowingStateLoss()
|
dismissAllowingStateLoss()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -62,10 +60,11 @@ class GameOffServiceDialogFragment : BaseDialogFragment() {
|
|||||||
if (index == notEmptySite.size - 1) bottomMargin = 8F.dip2px()
|
if (index == notEmptySite.size - 1) bottomMargin = 8F.dip2px()
|
||||||
}
|
}
|
||||||
siteTv.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14F)
|
siteTv.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14F)
|
||||||
siteTv.setTextColor(R.color.text_theme.toColor(requireContext()))
|
siteTv.setTextColor(R.color.theme_font.toColor(requireContext()))
|
||||||
siteTv.text = site.text
|
siteTv.text = site.text
|
||||||
siteTv.paintFlags = siteTv.paintFlags or Paint.UNDERLINE_TEXT_FLAG
|
siteTv.paintFlags = siteTv.paintFlags or Paint.UNDERLINE_TEXT_FLAG
|
||||||
siteTv.setOnClickListener {
|
siteTv.setOnClickListener {
|
||||||
|
// MtaHelper.onEvent("游戏下载状态按钮", getKey(), site.text)
|
||||||
DirectUtils.directToWebView(requireContext(), site.url, "(关闭下载弹窗)")
|
DirectUtils.directToWebView(requireContext(), site.url, "(关闭下载弹窗)")
|
||||||
dismissAllowingStateLoss()
|
dismissAllowingStateLoss()
|
||||||
}
|
}
|
||||||
@ -84,13 +83,11 @@ class GameOffServiceDialogFragment : BaseDialogFragment() {
|
|||||||
const val KEY_DIALOG = "dialog"
|
const val KEY_DIALOG = "dialog"
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun getInstance(dialog: GameEntity.Dialog, callback: (() -> Unit)? = null) =
|
fun getInstance(dialog: GameEntity.Dialog) = GameOffServiceDialogFragment().apply {
|
||||||
GameOffServiceDialogFragment().apply {
|
arguments = Bundle().apply {
|
||||||
arguments = Bundle().apply {
|
putParcelable(KEY_DIALOG, dialog)
|
||||||
putParcelable(KEY_DIALOG, dialog)
|
|
||||||
}
|
|
||||||
mCallback = callback
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1,7 +1,6 @@
|
|||||||
package com.gh.common.dialog
|
package com.gh.common.dialog
|
||||||
|
|
||||||
import android.app.Activity.RESULT_OK
|
import android.app.Activity.RESULT_OK
|
||||||
import android.content.DialogInterface
|
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
@ -14,15 +13,17 @@ import androidx.appcompat.app.AppCompatActivity
|
|||||||
import androidx.fragment.app.FragmentTransaction
|
import androidx.fragment.app.FragmentTransaction
|
||||||
import com.airbnb.lottie.LottieAnimationView
|
import com.airbnb.lottie.LottieAnimationView
|
||||||
import com.gh.common.constant.Config
|
import com.gh.common.constant.Config
|
||||||
import com.gh.common.util.NewFlatLogUtils
|
|
||||||
import com.gh.common.xapk.XapkInstaller
|
import com.gh.common.xapk.XapkInstaller
|
||||||
import com.gh.gamecenter.R
|
import com.gh.gamecenter.R
|
||||||
import com.gh.gamecenter.common.base.fragment.BaseDialogFragment
|
import com.gh.gamecenter.common.base.fragment.BaseDialogFragment
|
||||||
import com.gh.gamecenter.common.constant.Constants
|
import com.gh.gamecenter.common.constant.Constants
|
||||||
import com.gh.gamecenter.common.utils.*
|
import com.gh.gamecenter.common.utils.PermissionHelper
|
||||||
import com.gh.gamecenter.common.utils.PermissionHelper.INSTALL_PERMISSION_CODE
|
import com.gh.gamecenter.common.utils.PermissionHelper.INSTALL_PERMISSION_CODE
|
||||||
|
import com.gh.gamecenter.common.utils.getExtension
|
||||||
|
import com.gh.gamecenter.common.utils.goneIf
|
||||||
import com.gh.gamecenter.core.utils.SPUtils
|
import com.gh.gamecenter.core.utils.SPUtils
|
||||||
import com.lightgame.download.DownloadEntity
|
import com.lightgame.download.DownloadEntity
|
||||||
|
import com.lightgame.utils.Utils
|
||||||
import kotlin.random.Random
|
import kotlin.random.Random
|
||||||
|
|
||||||
class InstallPermissionDialogFragment : BaseDialogFragment() {
|
class InstallPermissionDialogFragment : BaseDialogFragment() {
|
||||||
@ -30,13 +31,8 @@ class InstallPermissionDialogFragment : BaseDialogFragment() {
|
|||||||
lateinit var mView: View
|
lateinit var mView: View
|
||||||
var isXapk = false
|
var isXapk = false
|
||||||
var url: String = ""
|
var url: String = ""
|
||||||
var gameId: String = ""
|
|
||||||
var gameName: String = ""
|
|
||||||
var gameType: String = ""
|
|
||||||
var mCallBack: ((isFromPermissionGrantedCallback: Boolean) -> Unit)? = null
|
var mCallBack: ((isFromPermissionGrantedCallback: Boolean) -> Unit)? = null
|
||||||
|
|
||||||
private var dismissByTouchInside = false
|
|
||||||
|
|
||||||
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
|
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
|
||||||
mView = inflater.inflate(R.layout.dialog_install_permission, null, false)
|
mView = inflater.inflate(R.layout.dialog_install_permission, null, false)
|
||||||
return mView
|
return mView
|
||||||
@ -54,14 +50,6 @@ class InstallPermissionDialogFragment : BaseDialogFragment() {
|
|||||||
switchLottie.setAnimation("lottie/install_permission_switch.json")
|
switchLottie.setAnimation("lottie/install_permission_switch.json")
|
||||||
switchLottie.playAnimation()
|
switchLottie.playAnimation()
|
||||||
|
|
||||||
if (isXapk) NewFlatLogUtils.logXApkInstallPermissionDialogShowed(gameId, gameName)
|
|
||||||
|
|
||||||
SensorsBridge.trackInstallPermissionDialogShow(
|
|
||||||
gameId = gameId,
|
|
||||||
gameName = gameName,
|
|
||||||
gameType = gameType
|
|
||||||
)
|
|
||||||
|
|
||||||
val randomNumber = if (isXapk) 1 else Random.nextInt(2)
|
val randomNumber = if (isXapk) 1 else Random.nextInt(2)
|
||||||
closeTv.goneIf(randomNumber == 0)
|
closeTv.goneIf(randomNumber == 0)
|
||||||
closeIv.goneIf(randomNumber != 0)
|
closeIv.goneIf(randomNumber != 0)
|
||||||
@ -71,38 +59,15 @@ class InstallPermissionDialogFragment : BaseDialogFragment() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
closeTv.setOnClickListener {
|
closeTv.setOnClickListener {
|
||||||
dismissByTouchInside = true
|
|
||||||
if (isXapk) {
|
if (isXapk) {
|
||||||
NewFlatLogUtils.logXApkInstallPermissionDialogClick("尝试解压", false, gameId, gameName)
|
|
||||||
mCallBack?.invoke(false)
|
mCallBack?.invoke(false)
|
||||||
}
|
}
|
||||||
SensorsBridge.trackInstallPermissionDialogClick(
|
|
||||||
buttonName = "尝试解压",
|
|
||||||
gameId = gameId,
|
|
||||||
gameName = gameName,
|
|
||||||
gameType = gameType
|
|
||||||
)
|
|
||||||
dismiss()
|
dismiss()
|
||||||
}
|
}
|
||||||
closeIv.setOnClickListener {
|
closeIv.setOnClickListener {
|
||||||
dismissByTouchInside = true
|
|
||||||
if (isXapk) NewFlatLogUtils.logXApkInstallPermissionDialogClick("关闭", false, gameId, gameName)
|
|
||||||
SensorsBridge.trackInstallPermissionDialogClick(
|
|
||||||
buttonName = "关闭",
|
|
||||||
gameId = gameId,
|
|
||||||
gameName = gameName,
|
|
||||||
gameType = gameType
|
|
||||||
)
|
|
||||||
dismiss()
|
dismiss()
|
||||||
}
|
}
|
||||||
activateTv.setOnClickListener {
|
activateTv.setOnClickListener {
|
||||||
NewFlatLogUtils.logXApkInstallPermissionDialogClick("立即开启", false, gameId, gameName)
|
|
||||||
SensorsBridge.trackInstallPermissionDialogClick(
|
|
||||||
buttonName = "立即开启",
|
|
||||||
gameId = gameId,
|
|
||||||
gameName = gameName,
|
|
||||||
gameType = gameType
|
|
||||||
)
|
|
||||||
PermissionHelper.toInstallPermissionSetting(requireActivity())
|
PermissionHelper.toInstallPermissionSetting(requireActivity())
|
||||||
if (isXapk) {
|
if (isXapk) {
|
||||||
SPUtils.setString(Constants.SP_XAPK_UNZIP_ACTIVITY, requireActivity().javaClass.name)
|
SPUtils.setString(Constants.SP_XAPK_UNZIP_ACTIVITY, requireActivity().javaClass.name)
|
||||||
@ -111,25 +76,9 @@ class InstallPermissionDialogFragment : BaseDialogFragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDismiss(dialog: DialogInterface) {
|
|
||||||
if (!dismissByTouchInside) {
|
|
||||||
SensorsBridge.trackInstallPermissionDialogClick(
|
|
||||||
buttonName = "关闭弹窗",
|
|
||||||
gameId = gameId,
|
|
||||||
gameName = gameName,
|
|
||||||
gameType = gameType
|
|
||||||
)
|
|
||||||
}
|
|
||||||
super.onDismiss(dialog)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
||||||
super.onActivityResult(requestCode, resultCode, data)
|
super.onActivityResult(requestCode, resultCode, data)
|
||||||
if (resultCode == RESULT_OK && requestCode == INSTALL_PERMISSION_CODE) {
|
if (resultCode == RESULT_OK && requestCode == INSTALL_PERMISSION_CODE) {
|
||||||
dismissByTouchInside = true
|
|
||||||
|
|
||||||
NewFlatLogUtils.logXApkInstallPermissionDialogClick("立即开启", true, gameId, gameName)
|
|
||||||
|
|
||||||
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.R) {
|
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.R) {
|
||||||
SPUtils.setString(Constants.SP_XAPK_UNZIP_ACTIVITY, "")
|
SPUtils.setString(Constants.SP_XAPK_UNZIP_ACTIVITY, "")
|
||||||
SPUtils.setString(Constants.SP_XAPK_URL, "")
|
SPUtils.setString(Constants.SP_XAPK_URL, "")
|
||||||
@ -175,9 +124,6 @@ class InstallPermissionDialogFragment : BaseDialogFragment() {
|
|||||||
installPermissionDialogFragment.mCallBack = callBack
|
installPermissionDialogFragment.mCallBack = callBack
|
||||||
installPermissionDialogFragment.isXapk = isXapk
|
installPermissionDialogFragment.isXapk = isXapk
|
||||||
installPermissionDialogFragment.url = downloadEntity.url
|
installPermissionDialogFragment.url = downloadEntity.url
|
||||||
installPermissionDialogFragment.gameId = downloadEntity.gameId
|
|
||||||
installPermissionDialogFragment.gameName = downloadEntity.name
|
|
||||||
installPermissionDialogFragment.gameType = downloadEntity.categoryChinese
|
|
||||||
val transaction: FragmentTransaction = activity.supportFragmentManager.beginTransaction()
|
val transaction: FragmentTransaction = activity.supportFragmentManager.beginTransaction()
|
||||||
transaction.show(installPermissionDialogFragment)
|
transaction.show(installPermissionDialogFragment)
|
||||||
transaction.commit()
|
transaction.commit()
|
||||||
@ -186,9 +132,6 @@ class InstallPermissionDialogFragment : BaseDialogFragment() {
|
|||||||
this.mCallBack = callBack
|
this.mCallBack = callBack
|
||||||
this.isXapk = isXapk
|
this.isXapk = isXapk
|
||||||
this.url = downloadEntity.url
|
this.url = downloadEntity.url
|
||||||
this.gameId = downloadEntity.gameId
|
|
||||||
this.gameName = downloadEntity.name
|
|
||||||
this.gameType = downloadEntity.categoryChinese
|
|
||||||
}
|
}
|
||||||
installPermissionDialogFragment.show(
|
installPermissionDialogFragment.show(
|
||||||
activity.supportFragmentManager,
|
activity.supportFragmentManager,
|
||||||
|
|||||||
@ -1,68 +0,0 @@
|
|||||||
package com.gh.common.dialog
|
|
||||||
|
|
||||||
import android.content.Intent
|
|
||||||
import android.net.Uri
|
|
||||||
import android.os.Build
|
|
||||||
import android.os.Bundle
|
|
||||||
import android.os.Environment
|
|
||||||
import android.provider.Settings
|
|
||||||
import android.view.Gravity
|
|
||||||
import android.view.LayoutInflater
|
|
||||||
import android.view.View
|
|
||||||
import android.view.ViewGroup
|
|
||||||
import androidx.annotation.RequiresApi
|
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import com.gh.gamecenter.common.databinding.DialogAlertDefaultBinding
|
|
||||||
import com.lightgame.dialog.BaseDialogFragment
|
|
||||||
|
|
||||||
@RequiresApi(Build.VERSION_CODES.R)
|
|
||||||
class ManagerAllFilesPermissionDialogFragment : BaseDialogFragment() {
|
|
||||||
private val mBinding by lazy { DialogAlertDefaultBinding.inflate(layoutInflater) }
|
|
||||||
private var mCallBack: (() -> Unit)? = null
|
|
||||||
|
|
||||||
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View {
|
|
||||||
return mBinding.root
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
|
||||||
super.onViewCreated(view, savedInstanceState)
|
|
||||||
mBinding.run {
|
|
||||||
titleTv.text = "请求权限"
|
|
||||||
titleTv.gravity = Gravity.CENTER
|
|
||||||
contentTv.text = "需要所有文件访问权限,请打开权限设置页面"
|
|
||||||
|
|
||||||
confirmTv.setOnClickListener {
|
|
||||||
val intent = Intent().apply {
|
|
||||||
action = Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION
|
|
||||||
data = Uri.fromParts("package", requireContext().packageName, null)
|
|
||||||
}
|
|
||||||
requireActivity().startActivityForResult(intent, REQUEST_CODE)
|
|
||||||
}
|
|
||||||
cancelTv.setOnClickListener {
|
|
||||||
dismissAllowingStateLoss()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
|
||||||
super.onActivityResult(requestCode, resultCode, data)
|
|
||||||
if (requestCode == REQUEST_CODE && Environment.isExternalStorageManager()) {
|
|
||||||
mCallBack?.invoke()
|
|
||||||
dismissAllowingStateLoss()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
const val REQUEST_CODE = 1000
|
|
||||||
|
|
||||||
@JvmStatic
|
|
||||||
fun show(activity: AppCompatActivity, callback: () -> Unit) {
|
|
||||||
ManagerAllFilesPermissionDialogFragment().apply {
|
|
||||||
mCallBack = callback
|
|
||||||
}.show(
|
|
||||||
activity.supportFragmentManager,
|
|
||||||
ManagerAllFilesPermissionDialogFragment::class.java.name
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -13,11 +13,13 @@ import androidx.fragment.app.FragmentActivity
|
|||||||
import androidx.fragment.app.FragmentTransaction
|
import androidx.fragment.app.FragmentTransaction
|
||||||
import com.gh.common.util.DirectUtils
|
import com.gh.common.util.DirectUtils
|
||||||
import com.gh.gamecenter.R
|
import com.gh.gamecenter.R
|
||||||
|
import com.gh.gamecenter.WebActivity
|
||||||
import com.gh.gamecenter.common.base.fragment.BaseDialogFragment
|
import com.gh.gamecenter.common.base.fragment.BaseDialogFragment
|
||||||
import com.gh.gamecenter.common.utils.dip2px
|
import com.gh.gamecenter.common.utils.dip2px
|
||||||
import com.gh.gamecenter.common.view.CustomLinkMovementMethod
|
import com.gh.gamecenter.common.view.CustomLinkMovementMethod
|
||||||
import com.gh.gamecenter.databinding.DialogPrivacyProtocolNewBinding
|
import com.gh.gamecenter.databinding.DialogPrivacyProtocolNewBinding
|
||||||
import com.gh.gamecenter.entity.DialogEntity
|
import com.gh.gamecenter.entity.DialogEntity
|
||||||
|
import splitties.bundle.put
|
||||||
|
|
||||||
class NewPrivacyPolicyDialogFragment : BaseDialogFragment() {
|
class NewPrivacyPolicyDialogFragment : BaseDialogFragment() {
|
||||||
|
|
||||||
@ -76,7 +78,7 @@ class NewPrivacyPolicyDialogFragment : BaseDialogFragment() {
|
|||||||
contentText.setSpan(object : ClickableSpan() {
|
contentText.setSpan(object : ClickableSpan() {
|
||||||
override fun updateDrawState(ds: TextPaint) {
|
override fun updateDrawState(ds: TextPaint) {
|
||||||
super.updateDrawState(ds)
|
super.updateDrawState(ds)
|
||||||
ds.color = ContextCompat.getColor(requireContext(), R.color.text_theme)
|
ds.color = ContextCompat.getColor(requireContext(), R.color.theme_font)
|
||||||
ds.isUnderlineText = false
|
ds.isUnderlineText = false
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -159,7 +161,7 @@ class NewPrivacyPolicyDialogFragment : BaseDialogFragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
privacyDialogFragment.arguments = Bundle().apply {
|
privacyDialogFragment.arguments = Bundle().apply {
|
||||||
putParcelable(KEY_DATA, privacyPolicyEntity)
|
put(KEY_DATA, privacyPolicyEntity)
|
||||||
}
|
}
|
||||||
privacyDialogFragment.show(
|
privacyDialogFragment.show(
|
||||||
activity.supportFragmentManager,
|
activity.supportFragmentManager,
|
||||||
|
|||||||
@ -2,7 +2,6 @@ package com.gh.common.dialog
|
|||||||
|
|
||||||
import android.animation.ValueAnimator
|
import android.animation.ValueAnimator
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.DialogInterface
|
|
||||||
import android.content.pm.PackageInfo
|
import android.content.pm.PackageInfo
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
@ -12,14 +11,12 @@ import android.view.animation.LinearInterpolator
|
|||||||
import android.widget.LinearLayout
|
import android.widget.LinearLayout
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.core.content.ContextCompat
|
import androidx.core.content.ContextCompat
|
||||||
import androidx.core.view.isVisible
|
|
||||||
import androidx.fragment.app.FragmentTransaction
|
import androidx.fragment.app.FragmentTransaction
|
||||||
import androidx.lifecycle.Lifecycle
|
import androidx.lifecycle.Lifecycle
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import com.gh.common.util.DirectUtils
|
import com.gh.common.util.DirectUtils
|
||||||
import com.gh.common.util.LogUtils
|
import com.gh.common.util.LogUtils
|
||||||
import com.gh.common.util.PackageHelper
|
|
||||||
import com.gh.common.util.PackageUtils
|
import com.gh.common.util.PackageUtils
|
||||||
import com.gh.download.DownloadManager
|
import com.gh.download.DownloadManager
|
||||||
import com.gh.gamecenter.R
|
import com.gh.gamecenter.R
|
||||||
@ -34,9 +31,9 @@ import com.gh.gamecenter.core.utils.SPUtils
|
|||||||
import com.gh.gamecenter.core.utils.SpanBuilder
|
import com.gh.gamecenter.core.utils.SpanBuilder
|
||||||
import com.gh.gamecenter.databinding.FragmentPackageCheckBinding
|
import com.gh.gamecenter.databinding.FragmentPackageCheckBinding
|
||||||
import com.gh.gamecenter.databinding.PackageCheckItemBinding
|
import com.gh.gamecenter.databinding.PackageCheckItemBinding
|
||||||
import com.gh.gamecenter.feature.entity.DetectionObjectEntity
|
import com.gh.gamecenter.entity.DetectionObjectEntity
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
import com.gh.gamecenter.feature.entity.PackageDialogEntity
|
import com.gh.gamecenter.entity.PackageDialogEntity
|
||||||
import com.gh.gamecenter.eventbus.EBPackage
|
import com.gh.gamecenter.eventbus.EBPackage
|
||||||
import com.halo.assistant.HaloApp
|
import com.halo.assistant.HaloApp
|
||||||
import com.lightgame.adapter.BaseRecyclerAdapter
|
import com.lightgame.adapter.BaseRecyclerAdapter
|
||||||
@ -60,12 +57,10 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
private val mDuration = 3000
|
private val mDuration = 3000
|
||||||
private var mDisposable: Disposable? = null
|
private var mDisposable: Disposable? = null
|
||||||
private var mAdapter: PackageCheckAdapter? = null
|
private var mAdapter: PackageCheckAdapter? = null
|
||||||
private var mAllInstalledPackages = PackageHelper.getInstalledPackages(HaloApp.getInstance().application, 0)
|
private var mAllInstalledPackages = PackageUtils.getInstalledPackages(HaloApp.getInstance().application, 0)
|
||||||
var gameEntity: GameEntity? = null
|
var gameEntity: GameEntity? = null
|
||||||
var callBack: ConfirmListener? = null
|
var callBack: ConfirmListener? = null
|
||||||
|
|
||||||
private var mDismissByTouchInside = false
|
|
||||||
|
|
||||||
private val dataWatcher = object : DataWatcher() {
|
private val dataWatcher = object : DataWatcher() {
|
||||||
override fun onDataChanged(downloadEntity: DownloadEntity) {
|
override fun onDataChanged(downloadEntity: DownloadEntity) {
|
||||||
val packageName = downloadEntity.packageName
|
val packageName = downloadEntity.packageName
|
||||||
@ -95,11 +90,6 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
EventBus.getDefault().register(this)
|
EventBus.getDefault().register(this)
|
||||||
gameEntity?.let {
|
gameEntity?.let {
|
||||||
LogUtils.uploadPackageCheck("pkg_check_pop_click", "出现弹窗", it, "", "", "", "")
|
LogUtils.uploadPackageCheck("pkg_check_pop_click", "出现弹窗", it, "", "", "", "")
|
||||||
SensorsBridge.trackPkgCheckDialogShow(
|
|
||||||
gameId = it.id,
|
|
||||||
gameName = it.name ?: "",
|
|
||||||
gameType = it.categoryChinese
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -126,7 +116,7 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
requireContext(),
|
requireContext(),
|
||||||
0,
|
0,
|
||||||
(link.title ?: "").length,
|
(link.title ?: "").length,
|
||||||
R.color.text_theme,
|
R.color.theme_font,
|
||||||
true
|
true
|
||||||
) {
|
) {
|
||||||
LogUtils.uploadPackageCheck(
|
LogUtils.uploadPackageCheck(
|
||||||
@ -138,18 +128,6 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
"",
|
"",
|
||||||
""
|
""
|
||||||
)
|
)
|
||||||
SensorsBridge.trackPkgCheckDialogClick(
|
|
||||||
buttonName = "点击链接",
|
|
||||||
gameId = gameEntity?.id ?: "",
|
|
||||||
gameName = gameEntity?.name ?: "",
|
|
||||||
gameType = gameEntity?.categoryChinese ?: "",
|
|
||||||
isNotPrompt = if (binding.noRemindAgainCb.isVisible) {
|
|
||||||
binding.noRemindAgainCb.isChecked
|
|
||||||
} else null,
|
|
||||||
linkId = link.link ?: "",
|
|
||||||
linkType = link.type ?: "",
|
|
||||||
linkText = link.linkText ?: ""
|
|
||||||
)
|
|
||||||
DirectUtils.directToLinkPage(requireContext(), link, "包名检测弹窗", "")
|
DirectUtils.directToLinkPage(requireContext(), link, "包名检测弹窗", "")
|
||||||
}.build()
|
}.build()
|
||||||
spanBuilder.append(linkSpan)
|
spanBuilder.append(linkSpan)
|
||||||
@ -198,7 +176,6 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
}
|
}
|
||||||
val isAllPackageInstalled = isAllPackageInstalled(mAllInstalledPackages, entity)
|
val isAllPackageInstalled = isAllPackageInstalled(mAllInstalledPackages, entity)
|
||||||
if (isAllPackageInstalled) {
|
if (isAllPackageInstalled) {
|
||||||
mDismissByTouchInside = true
|
|
||||||
callBack?.onConfirm()
|
callBack?.onConfirm()
|
||||||
dismissAllowingStateLoss()
|
dismissAllowingStateLoss()
|
||||||
} else {
|
} else {
|
||||||
@ -216,15 +193,6 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
"",
|
"",
|
||||||
""
|
""
|
||||||
)
|
)
|
||||||
SensorsBridge.trackPkgCheckDialogClick(
|
|
||||||
buttonName = "点击前往下载",
|
|
||||||
gameId = gameEntity?.id ?: "",
|
|
||||||
gameName = gameEntity?.name ?: "",
|
|
||||||
gameType = gameEntity?.categoryChinese ?: "",
|
|
||||||
isNotPrompt = if (binding.noRemindAgainCb.isVisible) {
|
|
||||||
binding.noRemindAgainCb.isChecked
|
|
||||||
} else null
|
|
||||||
)
|
|
||||||
DirectUtils.directToLinkPage(requireContext(), packageLink, "包名检测弹窗", "")
|
DirectUtils.directToLinkPage(requireContext(), packageLink, "包名检测弹窗", "")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -238,19 +206,6 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
saveRecord(entity)
|
saveRecord(entity)
|
||||||
LogUtils.uploadPackageCheck("pkg_check_pop_click", "不再提示", gameEntity, "", "", "", "")
|
LogUtils.uploadPackageCheck("pkg_check_pop_click", "不再提示", gameEntity, "", "", "", "")
|
||||||
}
|
}
|
||||||
|
|
||||||
mDismissByTouchInside = true
|
|
||||||
|
|
||||||
SensorsBridge.trackPkgCheckDialogClick(
|
|
||||||
buttonName = binding.cancelTv.text.toString(),
|
|
||||||
gameId = gameEntity?.id ?: "",
|
|
||||||
gameName = gameEntity?.name ?: "",
|
|
||||||
gameType = gameEntity?.categoryChinese ?: "",
|
|
||||||
isNotPrompt = if (binding.noRemindAgainCb.isVisible) {
|
|
||||||
binding.noRemindAgainCb.isChecked
|
|
||||||
} else null
|
|
||||||
)
|
|
||||||
|
|
||||||
dismissAllowingStateLoss()
|
dismissAllowingStateLoss()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -326,7 +281,7 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
|
|
||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
super.onResume()
|
super.onResume()
|
||||||
mAllInstalledPackages = PackageHelper.getInstalledPackages(HaloApp.getInstance().application, 0)
|
mAllInstalledPackages = PackageUtils.getInstalledPackages(HaloApp.getInstance().application, 0)
|
||||||
gameEntity?.packageDialog?.let {
|
gameEntity?.packageDialog?.let {
|
||||||
if (isAllPackageInstalled(mAllInstalledPackages, it)) {
|
if (isAllPackageInstalled(mAllInstalledPackages, it)) {
|
||||||
callBack?.onConfirm()
|
callBack?.onConfirm()
|
||||||
@ -345,26 +300,11 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
DownloadManager.getInstance().removeObserver(dataWatcher)
|
DownloadManager.getInstance().removeObserver(dataWatcher)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDismiss(dialog: DialogInterface) {
|
|
||||||
if (!mDismissByTouchInside) {
|
|
||||||
SensorsBridge.trackPkgCheckDialogClick(
|
|
||||||
buttonName = "关闭弹窗",
|
|
||||||
gameId = gameEntity?.id ?: "",
|
|
||||||
gameName = gameEntity?.name ?: "",
|
|
||||||
gameType = gameEntity?.categoryChinese ?: "",
|
|
||||||
isNotPrompt = if (binding.noRemindAgainCb.isVisible) {
|
|
||||||
binding.noRemindAgainCb.isChecked
|
|
||||||
} else null
|
|
||||||
)
|
|
||||||
}
|
|
||||||
super.onDismiss(dialog)
|
|
||||||
}
|
|
||||||
|
|
||||||
//安装、卸载事件
|
//安装、卸载事件
|
||||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
||||||
fun onEventMainThread(busFour: EBPackage) {
|
fun onEventMainThread(busFour: EBPackage) {
|
||||||
if (busFour.isInstalledOrUninstalled()) {
|
if ("安装" == busFour.type || "卸载" == busFour.type) {
|
||||||
mAllInstalledPackages = PackageHelper.getInstalledPackages(HaloApp.getInstance().application, 0)
|
mAllInstalledPackages = PackageUtils.getInstalledPackages(HaloApp.getInstance().application, 0)
|
||||||
mAdapter?.notifyDataSetChanged()
|
mAdapter?.notifyDataSetChanged()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -392,10 +332,10 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
val isAllInstalled = checkDetectionsInstalled(mAllInstalledPackages, entity.packages)
|
val isAllInstalled = checkDetectionsInstalled(mAllInstalledPackages, entity.packages)
|
||||||
if (isAllInstalled) {
|
if (isAllInstalled) {
|
||||||
holder.binding.statusTv.text = "已安装"
|
holder.binding.statusTv.text = "已安装"
|
||||||
holder.binding.statusTv.setTextColor(ContextCompat.getColor(context, R.color.text_theme))
|
holder.binding.statusTv.setTextColor(ContextCompat.getColor(context, R.color.theme_font))
|
||||||
} else {
|
} else {
|
||||||
holder.binding.statusTv.text = "未安装"
|
holder.binding.statusTv.text = "未安装"
|
||||||
holder.binding.statusTv.setTextColor(ContextCompat.getColor(context, R.color.secondary_red))
|
holder.binding.statusTv.setTextColor(ContextCompat.getColor(context, R.color.theme_red))
|
||||||
}
|
}
|
||||||
holder.binding.statusTv.visibility = View.VISIBLE
|
holder.binding.statusTv.visibility = View.VISIBLE
|
||||||
} else {
|
} else {
|
||||||
@ -417,7 +357,7 @@ class PackageCheckDialogFragment : BaseDialogFragment() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
val allInstalledPackages = PackageHelper.getInstalledPackages(HaloApp.getInstance().application, 0)
|
val allInstalledPackages = PackageUtils.getInstalledPackages(HaloApp.getInstance().application, 0)
|
||||||
if (isAllPackageInstalled(allInstalledPackages, packageDialogEntity)) {
|
if (isAllPackageInstalled(allInstalledPackages, packageDialogEntity)) {
|
||||||
callBack.onConfirm()
|
callBack.onConfirm()
|
||||||
return
|
return
|
||||||
|
|||||||
@ -23,21 +23,13 @@ import com.gh.gamecenter.core.utils.SPUtils
|
|||||||
import com.gh.gamecenter.databinding.DialogPrivacyProtocolBinding
|
import com.gh.gamecenter.databinding.DialogPrivacyProtocolBinding
|
||||||
import com.gh.gamecenter.entity.DialogEntity
|
import com.gh.gamecenter.entity.DialogEntity
|
||||||
import com.lightgame.utils.AppManager
|
import com.lightgame.utils.AppManager
|
||||||
|
import splitties.bundle.put
|
||||||
|
|
||||||
class PrivacyPolicyDialogFragment : BaseDialogFragment() {
|
class PrivacyPolicyDialogFragment : BaseDialogFragment() {
|
||||||
|
|
||||||
private var mCallBack: ((isSuccess: Boolean) -> Unit)? = null
|
private var mCallBack: ((isSuccess: Boolean) -> Unit)? = null
|
||||||
private val mBinding by lazy { DialogPrivacyProtocolBinding.inflate(layoutInflater) }
|
private val mBinding by lazy { DialogPrivacyProtocolBinding.inflate(layoutInflater) }
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
|
||||||
super.onCreate(savedInstanceState)
|
|
||||||
|
|
||||||
if (savedInstanceState != null) {
|
|
||||||
dismiss()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onCreateView(
|
override fun onCreateView(
|
||||||
inflater: LayoutInflater,
|
inflater: LayoutInflater,
|
||||||
container: ViewGroup?,
|
container: ViewGroup?,
|
||||||
@ -68,7 +60,7 @@ class PrivacyPolicyDialogFragment : BaseDialogFragment() {
|
|||||||
skipText.setSpan(object : ClickableSpan() {
|
skipText.setSpan(object : ClickableSpan() {
|
||||||
override fun updateDrawState(ds: TextPaint) {
|
override fun updateDrawState(ds: TextPaint) {
|
||||||
super.updateDrawState(ds)
|
super.updateDrawState(ds)
|
||||||
ds.color = ContextCompat.getColor(requireContext(), R.color.text_theme)
|
ds.color = ContextCompat.getColor(requireContext(), R.color.theme_font)
|
||||||
ds.isUnderlineText = false
|
ds.isUnderlineText = false
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -110,7 +102,7 @@ class PrivacyPolicyDialogFragment : BaseDialogFragment() {
|
|||||||
skipText.setSpan(object : ClickableSpan() {
|
skipText.setSpan(object : ClickableSpan() {
|
||||||
override fun updateDrawState(ds: TextPaint) {
|
override fun updateDrawState(ds: TextPaint) {
|
||||||
super.updateDrawState(ds)
|
super.updateDrawState(ds)
|
||||||
ds.color = ContextCompat.getColor(requireContext(), R.color.text_theme)
|
ds.color = ContextCompat.getColor(requireContext(), R.color.theme_font)
|
||||||
ds.isUnderlineText = false
|
ds.isUnderlineText = false
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,7 +116,7 @@ class PrivacyPolicyDialogFragment : BaseDialogFragment() {
|
|||||||
skipText.setSpan(object : ClickableSpan() {
|
skipText.setSpan(object : ClickableSpan() {
|
||||||
override fun updateDrawState(ds: TextPaint) {
|
override fun updateDrawState(ds: TextPaint) {
|
||||||
super.updateDrawState(ds)
|
super.updateDrawState(ds)
|
||||||
ds.color = ContextCompat.getColor(requireContext(), R.color.text_theme)
|
ds.color = ContextCompat.getColor(requireContext(), R.color.theme_font)
|
||||||
ds.isUnderlineText = false
|
ds.isUnderlineText = false
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -192,7 +184,7 @@ class PrivacyPolicyDialogFragment : BaseDialogFragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
privacyDialogFragment.arguments = Bundle().apply {
|
privacyDialogFragment.arguments = Bundle().apply {
|
||||||
putParcelable(KEY_DATA, privacyPolicyEntity)
|
put(KEY_DATA, privacyPolicyEntity)
|
||||||
}
|
}
|
||||||
privacyDialogFragment.show(
|
privacyDialogFragment.show(
|
||||||
activity.supportFragmentManager,
|
activity.supportFragmentManager,
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import com.gh.gamecenter.R
|
|||||||
import com.gh.gamecenter.common.view.FixLinearLayoutManager
|
import com.gh.gamecenter.common.view.FixLinearLayoutManager
|
||||||
import com.gh.gamecenter.databinding.DialogReserveBinding
|
import com.gh.gamecenter.databinding.DialogReserveBinding
|
||||||
import com.gh.gamecenter.databinding.DialogReserveItemBinding
|
import com.gh.gamecenter.databinding.DialogReserveItemBinding
|
||||||
import com.gh.gamecenter.common.entity.SimpleGameEntity
|
import com.gh.gamecenter.entity.SimpleGameEntity
|
||||||
import com.gh.gamecenter.mygame.MyGameActivity
|
import com.gh.gamecenter.mygame.MyGameActivity
|
||||||
import com.lightgame.adapter.BaseRecyclerAdapter
|
import com.lightgame.adapter.BaseRecyclerAdapter
|
||||||
|
|
||||||
@ -24,15 +24,6 @@ class ReserveDialog : BaseDialogFragment() {
|
|||||||
private lateinit var mReserveList: List<SimpleGameEntity>
|
private lateinit var mReserveList: List<SimpleGameEntity>
|
||||||
private var mDismissListener: (() -> Unit)? = null
|
private var mDismissListener: (() -> Unit)? = null
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
|
||||||
super.onCreate(savedInstanceState)
|
|
||||||
|
|
||||||
if (savedInstanceState != null) {
|
|
||||||
dismiss()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View {
|
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View {
|
||||||
val binding: DialogReserveBinding = DialogReserveBinding.inflate(layoutInflater, null, false)
|
val binding: DialogReserveBinding = DialogReserveBinding.inflate(layoutInflater, null, false)
|
||||||
|
|
||||||
|
|||||||
191
app/src/main/java/com/gh/common/exposure/ExposureEvent.kt
Normal file
191
app/src/main/java/com/gh/common/exposure/ExposureEvent.kt
Normal file
@ -0,0 +1,191 @@
|
|||||||
|
package com.gh.common.exposure
|
||||||
|
|
||||||
|
import android.os.Parcelable
|
||||||
|
import androidx.annotation.Keep
|
||||||
|
import androidx.room.PrimaryKey
|
||||||
|
import com.gh.common.exposure.time.TimeUtil
|
||||||
|
import com.gh.download.server.BrowserInstallHelper
|
||||||
|
import com.gh.gamecenter.common.constant.Constants
|
||||||
|
import com.gh.gamecenter.common.entity.ExposureEntity
|
||||||
|
import com.gh.gamecenter.common.exposure.meta.Meta
|
||||||
|
import com.gh.gamecenter.common.exposure.meta.MetaUtil
|
||||||
|
import com.gh.gamecenter.common.utils.getFirstElementDividedByDivider
|
||||||
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
|
import com.lightgame.download.DownloadEntity
|
||||||
|
import com.lightgame.utils.Utils
|
||||||
|
import kotlinx.parcelize.IgnoredOnParcel
|
||||||
|
import kotlinx.parcelize.Parcelize
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
@Keep
|
||||||
|
@Parcelize
|
||||||
|
data class ExposureEvent(
|
||||||
|
var payload: ExposureEntity,
|
||||||
|
var source: List<ExposureSource>,
|
||||||
|
var eTrace: List<ExposureEvent>? = arrayListOf(),
|
||||||
|
var event: ExposureType,
|
||||||
|
val meta: Meta = MetaUtil.getMeta(),
|
||||||
|
var time: Int = TimeUtil.currentTime(),
|
||||||
|
var timeInMillisecond: Long = System.currentTimeMillis(),
|
||||||
|
@PrimaryKey
|
||||||
|
var id: String = UUID.randomUUID().toString(),
|
||||||
|
) : Parcelable {
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@IgnoredOnParcel
|
||||||
|
var next: ExposureEvent? = null
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@IgnoredOnParcel
|
||||||
|
var flags = 0
|
||||||
|
|
||||||
|
private fun initExposureEventData(
|
||||||
|
gameEntity: GameEntity?,
|
||||||
|
source: List<ExposureSource>,
|
||||||
|
eTrace: List<ExposureEvent>? = null,
|
||||||
|
event: ExposureType = ExposureType.EXPOSURE
|
||||||
|
) {
|
||||||
|
this.payload = ExposureEntity(
|
||||||
|
gameId = gameEntity?.id?.getFirstElementDividedByDivider(DownloadEntity.GAME_ID_DIVIDER),
|
||||||
|
gameName = eTrace?.firstOrNull()?.payload?.gameName
|
||||||
|
?: gameEntity?.name?.removeSuffix(Constants.GAME_NAME_DECORATOR),
|
||||||
|
gameVersion = eTrace?.firstOrNull()?.payload?.gameVersion
|
||||||
|
?: gameEntity?.gameVersion,
|
||||||
|
subjectId = eTrace?.firstOrNull()?.payload?.subjectId
|
||||||
|
?: gameEntity?.subjectId
|
||||||
|
?: gameEntity?.subjectData?.id,
|
||||||
|
isMirrorData = eTrace?.firstOrNull()?.payload?.isMirrorData
|
||||||
|
?: gameEntity?.shouldUseMirrorInfo() ?: false,
|
||||||
|
isWebDownload = BrowserInstallHelper.isUseBrowserToInstallEnabled() && BrowserInstallHelper.shouldUseBrowserToInstall(), // 实时的值,不用从 eTrace 里取
|
||||||
|
sequence = eTrace?.firstOrNull()?.payload?.sequence ?: gameEntity?.sequence,
|
||||||
|
outerSequence = eTrace?.firstOrNull()?.payload?.outerSequence
|
||||||
|
?: gameEntity?.outerSequence,
|
||||||
|
platform = eTrace?.firstOrNull()?.payload?.platform ?: gameEntity?.platform,
|
||||||
|
downloadType = gameEntity?.downloadType,
|
||||||
|
downloadCompleteType = gameEntity?.downloadCompleteType,
|
||||||
|
displayType = eTrace?.firstOrNull()?.payload?.displayType
|
||||||
|
?: gameEntity?.displayContent,
|
||||||
|
isPlatformRecommend = gameEntity?.isPlatformRecommend,
|
||||||
|
// ugly
|
||||||
|
welcomeDialogId = gameEntity?.welcomeDialogId
|
||||||
|
?: eTrace?.firstOrNull()?.payload?.welcomeDialogId,
|
||||||
|
welcomeDialogLinkTitle = gameEntity?.welcomeDialogTitle
|
||||||
|
?: eTrace?.firstOrNull()?.payload?.welcomeDialogLinkTitle,
|
||||||
|
isAdData = gameEntity?.adIconActive ?: eTrace?.firstOrNull()?.payload?.isAdData ?: false
|
||||||
|
)
|
||||||
|
this.id = UUID.randomUUID().toString()
|
||||||
|
this.timeInMillisecond = System.currentTimeMillis()
|
||||||
|
this.time = TimeUtil.currentTime()
|
||||||
|
this.source = source
|
||||||
|
this.eTrace = eTrace
|
||||||
|
this.event = event
|
||||||
|
this.also {
|
||||||
|
it.payload.categoryId = eTrace?.firstOrNull()?.payload?.categoryId
|
||||||
|
it.payload.categoryV2Id = eTrace?.firstOrNull()?.payload?.categoryV2Id
|
||||||
|
it.payload.testServerId = eTrace?.firstOrNull()?.payload?.testServerId
|
||||||
|
it.payload.blockId = eTrace?.firstOrNull()?.payload?.blockId
|
||||||
|
|
||||||
|
it.payload.setContainerInfo(
|
||||||
|
eTrace?.firstOrNull()?.payload?.containerId ?: gameEntity?.containerId,
|
||||||
|
eTrace?.firstOrNull()?.payload?.containerType ?: gameEntity?.containerType
|
||||||
|
)
|
||||||
|
|
||||||
|
it.payload.sourcePage = eTrace?.firstOrNull()?.payload?.sourcePage
|
||||||
|
it.payload.sourcePageId = eTrace?.firstOrNull()?.payload?.sourcePageId
|
||||||
|
it.payload.sourcePageName = eTrace?.firstOrNull()?.payload?.sourcePageName
|
||||||
|
gameEntity?.exposureEvent = it
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun recycle() {
|
||||||
|
if (inUse()) {
|
||||||
|
Utils.log(
|
||||||
|
EXPOSURE_EVENT_LOG_TAG,
|
||||||
|
"This ExposureEvent $this cannot be recycled because it is still in use."
|
||||||
|
)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
recycleUnchecked()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun recycleUnchecked() {
|
||||||
|
this.flags = FLAG_IN_USE
|
||||||
|
synchronized(sPoolSync) {
|
||||||
|
if (sPoolSize < EXPOSURE_EVENT_MAX_POOL_SIZE) {
|
||||||
|
next = sPool
|
||||||
|
sPool = this
|
||||||
|
sPoolSize++
|
||||||
|
Utils.log(EXPOSURE_EVENT_LOG_TAG, "This ExposureEvent $this Recycled")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun inUse(): Boolean {
|
||||||
|
return flags == FLAG_IN_USE
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
private val sPoolSync = Any()
|
||||||
|
private var sPool: ExposureEvent? = null
|
||||||
|
private var sPoolSize: Int = 0
|
||||||
|
|
||||||
|
private const val EXPOSURE_EVENT_MAX_POOL_SIZE: Int = 300
|
||||||
|
private const val FLAG_IN_USE = 1
|
||||||
|
private const val EXPOSURE_EVENT_LOG_TAG = "ExposureEvent"
|
||||||
|
|
||||||
|
@JvmStatic
|
||||||
|
fun createEvent(
|
||||||
|
gameEntity: GameEntity?,
|
||||||
|
source: List<ExposureSource>,
|
||||||
|
eTrace: List<ExposureEvent>? = null,
|
||||||
|
event: ExposureType = ExposureType.EXPOSURE
|
||||||
|
): ExposureEvent {
|
||||||
|
if (gameEntity?.getApk()?.size == 1) {
|
||||||
|
gameEntity.gameVersion = gameEntity.getApk().elementAtOrNull(0)?.version ?: ""
|
||||||
|
}
|
||||||
|
synchronized(sPoolSync) {
|
||||||
|
if (sPool != null) {
|
||||||
|
val exposureEvent = sPool
|
||||||
|
sPool = exposureEvent?.next
|
||||||
|
exposureEvent?.next = null
|
||||||
|
exposureEvent?.flags = 0
|
||||||
|
sPoolSize--
|
||||||
|
exposureEvent?.initExposureEventData(gameEntity, source, eTrace, event)
|
||||||
|
Utils.log(
|
||||||
|
EXPOSURE_EVENT_LOG_TAG,
|
||||||
|
"ExposureEvent 对象 $this 正在被循环使用, 当前对象池数量还有 $sPoolSize"
|
||||||
|
)
|
||||||
|
return exposureEvent!!
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Utils.log(
|
||||||
|
EXPOSURE_EVENT_LOG_TAG,
|
||||||
|
"new ExposureEvent 对象"
|
||||||
|
)
|
||||||
|
val exposureEvent = ExposureEvent(
|
||||||
|
payload = ExposureEntity(),
|
||||||
|
source = source,
|
||||||
|
eTrace = eTrace,
|
||||||
|
event = event
|
||||||
|
)
|
||||||
|
exposureEvent.initExposureEventData(gameEntity, source, eTrace, event)
|
||||||
|
return exposureEvent
|
||||||
|
}
|
||||||
|
|
||||||
|
@JvmStatic
|
||||||
|
fun createEventWithSourceConcat(
|
||||||
|
gameEntity: GameEntity?,
|
||||||
|
basicSource: List<ExposureSource>,
|
||||||
|
source: List<ExposureSource>,
|
||||||
|
eTrace: List<ExposureEvent>? = null,
|
||||||
|
event: ExposureType = ExposureType.EXPOSURE
|
||||||
|
): ExposureEvent {
|
||||||
|
val concatSourceList = ArrayList<ExposureSource>().apply {
|
||||||
|
addAll(basicSource)
|
||||||
|
addAll(source)
|
||||||
|
}
|
||||||
|
return createEvent(gameEntity, concatSourceList, eTrace, event)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -4,9 +4,6 @@ import androidx.fragment.app.Fragment
|
|||||||
import androidx.fragment.app.FragmentManager
|
import androidx.fragment.app.FragmentManager
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import androidx.recyclerview.widget.RecyclerView.LayoutManager
|
|
||||||
import androidx.recyclerview.widget.StaggeredGridLayoutManager
|
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent
|
|
||||||
import io.reactivex.functions.Consumer
|
import io.reactivex.functions.Consumer
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -20,7 +17,7 @@ class ExposureListener(var fragment: Fragment, var exposable: IExposable) : Recy
|
|||||||
Consumer(Throwable::printStackTrace)
|
Consumer(Throwable::printStackTrace)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
var layoutManager: LayoutManager? = null
|
var layoutManager: LinearLayoutManager? = null
|
||||||
var visibleState: ExposureThrottleBus.VisibleState? = null
|
var visibleState: ExposureThrottleBus.VisibleState? = null
|
||||||
|
|
||||||
init {
|
init {
|
||||||
@ -49,28 +46,12 @@ class ExposureListener(var fragment: Fragment, var exposable: IExposable) : Recy
|
|||||||
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
||||||
super.onScrolled(recyclerView, dx, dy)
|
super.onScrolled(recyclerView, dx, dy)
|
||||||
|
|
||||||
layoutManager = recyclerView.layoutManager
|
if (layoutManager == null) layoutManager = recyclerView.layoutManager as LinearLayoutManager
|
||||||
|
|
||||||
if (layoutManager != null) {
|
layoutManager?.run {
|
||||||
if (layoutManager is LinearLayoutManager) {
|
visibleState =
|
||||||
(layoutManager as LinearLayoutManager).run {
|
ExposureThrottleBus.VisibleState(findFirstVisibleItemPosition(), findLastVisibleItemPosition())
|
||||||
visibleState =
|
throttleBus.postVisibleState(visibleState!!)
|
||||||
ExposureThrottleBus.VisibleState(findFirstVisibleItemPosition(), findLastVisibleItemPosition())
|
|
||||||
throttleBus.postVisibleState(visibleState!!)
|
|
||||||
}
|
|
||||||
} else if (layoutManager is StaggeredGridLayoutManager) {
|
|
||||||
(recyclerView.layoutManager as StaggeredGridLayoutManager).run {
|
|
||||||
val firstVisibleItemArray = IntArray(2)
|
|
||||||
val lastVisibleItemArray = IntArray(2)
|
|
||||||
|
|
||||||
findFirstVisibleItemPositions(firstVisibleItemArray)
|
|
||||||
findLastVisibleItemPositions(lastVisibleItemArray)
|
|
||||||
|
|
||||||
visibleState =
|
|
||||||
ExposureThrottleBus.VisibleState(firstVisibleItemArray.first(), lastVisibleItemArray.first())
|
|
||||||
throttleBus.postVisibleState(visibleState!!)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -5,8 +5,6 @@ import com.gh.gamecenter.BuildConfig
|
|||||||
import com.gh.gamecenter.common.loghub.LoghubHelper
|
import com.gh.gamecenter.common.loghub.LoghubHelper
|
||||||
import com.gh.gamecenter.common.utils.FixedSizeLinkedHashSet
|
import com.gh.gamecenter.common.utils.FixedSizeLinkedHashSet
|
||||||
import com.gh.gamecenter.common.utils.toJson
|
import com.gh.gamecenter.common.utils.toJson
|
||||||
import com.gh.gamecenter.core.AppExecutor
|
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent
|
|
||||||
import com.lightgame.utils.Utils
|
import com.lightgame.utils.Utils
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -31,13 +29,11 @@ object ExposureManager {
|
|||||||
* Log a single exposure event.
|
* Log a single exposure event.
|
||||||
*/
|
*/
|
||||||
fun log(event: ExposureEvent) {
|
fun log(event: ExposureEvent) {
|
||||||
AppExecutor.logExecutor.execute {
|
if (!exposureCache.contains(event.id)) {
|
||||||
if (!exposureCache.contains(event.id)) {
|
exposureSet.add(event)
|
||||||
exposureSet.add(event)
|
exposureCache.add(event.id)
|
||||||
exposureCache.add(event.id)
|
} else {
|
||||||
} else {
|
Utils.log("Exposure", "遇到重复曝光事件,自动过滤 (${event.id} - ${event.payload.gameName})")
|
||||||
Utils.log("Exposure", "遇到重复曝光事件,自动过滤 (${event.id} - ${event.payload.gameName})")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,41 +41,37 @@ object ExposureManager {
|
|||||||
* Log a collection of exposure event.
|
* Log a collection of exposure event.
|
||||||
*/
|
*/
|
||||||
fun log(eventList: List<ExposureEvent>) {
|
fun log(eventList: List<ExposureEvent>) {
|
||||||
AppExecutor.logExecutor.execute {
|
for (event in eventList) {
|
||||||
for (event in eventList) {
|
if (!exposureCache.contains(event.id)) {
|
||||||
if (event != null && !exposureCache.contains(event.id)) {
|
exposureSet.add(event)
|
||||||
exposureSet.add(event)
|
exposureCache.add(event.id)
|
||||||
exposureCache.add(event.id)
|
} else {
|
||||||
} else {
|
Utils.log("Exposure", "遇到重复曝光事件,自动过滤 (${event.id} - ${event.payload.gameName})")
|
||||||
Utils.log("Exposure", "遇到重复曝光事件,自动过滤 (${event.id} - ${event.payload.gameName})")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
commitSavedExposureEvents()
|
|
||||||
}
|
}
|
||||||
|
commitSavedExposureEvents()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param forcedUpload Ignore all restrictions.
|
* @param forcedUpload Ignore all restrictions.
|
||||||
*/
|
*/
|
||||||
fun commitSavedExposureEvents(forcedUpload: Boolean = false) {
|
fun commitSavedExposureEvents(forcedUpload: Boolean = false) {
|
||||||
AppExecutor.logExecutor.execute {
|
if (exposureSet.size < STORE_SIZE && !forcedUpload || exposureSet.size == 0) return
|
||||||
if (exposureSet.size < STORE_SIZE && !forcedUpload || exposureSet.size == 0) return@execute
|
|
||||||
|
|
||||||
uploadExposures(exposureSet, forcedUpload)
|
uploadExposures(exposureSet.toList(), forcedUpload)
|
||||||
|
|
||||||
Utils.log("Exposure", "提交了${exposureSet.size}条曝光记录")
|
Utils.log("Exposure", "提交了${exposureSet.size}条曝光记录")
|
||||||
exposureSet.clear()
|
exposureSet.clear()
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun eliminateMultipleBrackets(jsonWithMultipleBracket: String): String {
|
private fun eliminateMultipleBrackets(jsonWithMultipleBracket: String): String {
|
||||||
return jsonWithMultipleBracket.replace("[[", "[").replace("]]", "]")
|
return jsonWithMultipleBracket.replace("[[", "[").replace("]]", "]")
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun uploadExposures(eventSet: HashSet<ExposureEvent>, forced: Boolean) {
|
private fun uploadExposures(eventList: List<ExposureEvent>, forced: Boolean) {
|
||||||
eventSet.forEach {
|
eventList.forEach {
|
||||||
LoghubHelper.uploadLog(buildLog(it), LOG_STORE, forced)
|
LoghubHelper.uploadLog(buildLog(it), LOG_STORE, forced)
|
||||||
// it.recycle()
|
it.recycle()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,6 +87,7 @@ object ExposureManager {
|
|||||||
eliminateMultipleBrackets(event.eTrace?.toJson() ?: "")
|
eliminateMultipleBrackets(event.eTrace?.toJson() ?: "")
|
||||||
} else ""
|
} else ""
|
||||||
)
|
)
|
||||||
|
logTime = event.time.toLong()
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1,4 +1,4 @@
|
|||||||
package com.gh.gamecenter.common.exposure
|
package com.gh.common.exposure
|
||||||
|
|
||||||
import android.os.Parcelable
|
import android.os.Parcelable
|
||||||
import androidx.annotation.Keep
|
import androidx.annotation.Keep
|
||||||
@ -6,8 +6,4 @@ import kotlinx.parcelize.Parcelize
|
|||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
@Parcelize
|
@Parcelize
|
||||||
data class ExposureSource(var k: String, var v: String = "") : Parcelable {
|
data class ExposureSource(var k: String, var v: String = "") : Parcelable
|
||||||
override fun toString(): String {
|
|
||||||
return "{\"k\":\"$k\",\"v\":\"$v\"}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,20 +1,16 @@
|
|||||||
package com.gh.common.exposure
|
package com.gh.common.exposure
|
||||||
|
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent
|
|
||||||
|
|
||||||
object ExposureTraceUtils {
|
object ExposureTraceUtils {
|
||||||
|
|
||||||
fun appendTrace(event: ExposureEvent?): List<ExposureEvent> {
|
fun appendTrace(event: ExposureEvent?): List<ExposureEvent> {
|
||||||
val traceList = arrayListOf<ExposureEvent>()
|
val traceList = arrayListOf<ExposureEvent>()
|
||||||
|
|
||||||
event?.let {
|
event?.let {
|
||||||
//这里使用deepCopy,是为了防止循环引用调用hashCode方法触发StackOverflowError错误
|
if (event.eTrace == null) {
|
||||||
val deepCopy = it.deepCopy()
|
traceList.add(event)
|
||||||
if (deepCopy.eTrace == null) {
|
|
||||||
traceList.add(deepCopy)
|
|
||||||
} else {
|
} else {
|
||||||
traceList.addAll(deepCopy.eTrace!!)
|
traceList.addAll(event.eTrace!!)
|
||||||
traceList.add(flattenTrace(deepCopy))
|
traceList.add(flattenTrace(event))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
package com.gh.gamecenter.feature.exposure
|
package com.gh.common.exposure
|
||||||
|
|
||||||
enum class ExposureType {
|
enum class ExposureType {
|
||||||
EXPOSURE,
|
EXPOSURE,
|
||||||
@ -3,13 +3,10 @@ package com.gh.common.exposure
|
|||||||
import android.text.TextUtils
|
import android.text.TextUtils
|
||||||
import com.g00fy2.versioncompare.Version
|
import com.g00fy2.versioncompare.Version
|
||||||
import com.gh.common.util.PackageUtils
|
import com.gh.common.util.PackageUtils
|
||||||
import com.gh.common.util.RealNameHelper
|
|
||||||
import com.gh.gamecenter.common.utils.FixedSizeLinkedHashSet
|
import com.gh.gamecenter.common.utils.FixedSizeLinkedHashSet
|
||||||
import com.gh.gamecenter.common.utils.toObject
|
import com.gh.gamecenter.common.utils.toObject
|
||||||
import com.gh.gamecenter.feature.entity.ApkEntity
|
import com.gh.gamecenter.entity.ApkEntity
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent
|
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureType
|
|
||||||
import com.gh.gamecenter.manager.PackagesManager
|
import com.gh.gamecenter.manager.PackagesManager
|
||||||
import com.halo.assistant.HaloApp
|
import com.halo.assistant.HaloApp
|
||||||
import com.lightgame.download.DownloadEntity
|
import com.lightgame.download.DownloadEntity
|
||||||
@ -25,15 +22,12 @@ object ExposureUtils {
|
|||||||
traceEvent: ExposureEvent?,
|
traceEvent: ExposureEvent?,
|
||||||
downloadType: DownloadType
|
downloadType: DownloadType
|
||||||
): ExposureEvent {
|
): ExposureEvent {
|
||||||
val gameEntity = entity.copy()
|
val gameEntity = entity.clone()
|
||||||
gameEntity.id = if (entity.id.contains(DownloadEntity.GAME_ID_DIVIDER)) {
|
gameEntity.id = if (entity.id.contains(DownloadEntity.GAME_ID_DIVIDER)) {
|
||||||
entity.id.split(DownloadEntity.GAME_ID_DIVIDER).toTypedArray().firstOrNull() ?: ""
|
entity.id.split(DownloadEntity.GAME_ID_DIVIDER).toTypedArray()[0]
|
||||||
} else {
|
} else {
|
||||||
entity.id
|
entity.id
|
||||||
}
|
}
|
||||||
|
|
||||||
traceEvent ?: gameEntity.exposureEvent
|
|
||||||
|
|
||||||
gameEntity.gameVersion = entity.getApk().elementAtOrNull(0)?.version
|
gameEntity.gameVersion = entity.getApk().elementAtOrNull(0)?.version
|
||||||
?: gameEntity.gameVersion
|
?: gameEntity.gameVersion
|
||||||
gameEntity.platform = platform
|
gameEntity.platform = platform
|
||||||
@ -43,12 +37,9 @@ object ExposureUtils {
|
|||||||
source = traceEvent?.source ?: ArrayList(),
|
source = traceEvent?.source ?: ArrayList(),
|
||||||
eTrace = ExposureTraceUtils.appendTrace(traceEvent),
|
eTrace = ExposureTraceUtils.appendTrace(traceEvent),
|
||||||
event = ExposureType.DOWNLOAD
|
event = ExposureType.DOWNLOAD
|
||||||
).apply {
|
)
|
||||||
this.payload.certification = RealNameHelper.getCertificationStatus()
|
|
||||||
}
|
|
||||||
if (!TextUtils.isEmpty(entity.id)) {
|
if (!TextUtils.isEmpty(entity.id)) {
|
||||||
ExposureManager.log(exposureEvent)
|
ExposureManager.log(exposureEvent)
|
||||||
ExposureManager.commitSavedExposureEvents(forcedUpload = true)
|
|
||||||
}
|
}
|
||||||
return exposureEvent
|
return exposureEvent
|
||||||
}
|
}
|
||||||
@ -58,21 +49,20 @@ object ExposureUtils {
|
|||||||
entity: GameEntity,
|
entity: GameEntity,
|
||||||
platform: String?,
|
platform: String?,
|
||||||
trace: String?,
|
trace: String?,
|
||||||
speed: Long,
|
|
||||||
host: String? = "unknown",
|
host: String? = "unknown",
|
||||||
path: String? = "unknown",
|
path: String? = "unknown",
|
||||||
downloadType: DownloadType
|
downloadType: DownloadType
|
||||||
): ExposureEvent? {
|
) {
|
||||||
val gameEntity = entity.copy()
|
val gameEntity = entity.clone()
|
||||||
gameEntity.platform = platform
|
gameEntity.platform = platform
|
||||||
gameEntity.downloadCompleteType = downloadType.toString()
|
gameEntity.downloadCompleteType = downloadType.toString()
|
||||||
val traceEvent = trace?.toObject<ExposureEvent>()
|
val traceEvent = trace?.toObject<ExposureEvent>()
|
||||||
|
|
||||||
if (TextUtils.isEmpty(entity.id)) return null
|
if (TextUtils.isEmpty(entity.id)) return
|
||||||
|
|
||||||
// 避免生成 trace 相同的下载完成事件,根据日志看下载完成的同一秒有可能生成两条
|
// 避免生成 trace 相同的下载完成事件,根据日志看下载完成的同一秒有可能生成两条
|
||||||
if (mDownloadCompleteTraceEventIdSet.contains(traceEvent?.id)) {
|
if (mDownloadCompleteTraceEventIdSet.contains(traceEvent?.id)) {
|
||||||
return null
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
traceEvent?.payload?.gameId?.let { mDownloadCompleteTraceEventIdSet.add(it) }
|
traceEvent?.payload?.gameId?.let { mDownloadCompleteTraceEventIdSet.add(it) }
|
||||||
@ -82,23 +72,17 @@ object ExposureUtils {
|
|||||||
source = traceEvent?.source ?: ArrayList(),
|
source = traceEvent?.source ?: ArrayList(),
|
||||||
eTrace = ExposureTraceUtils.appendTrace(traceEvent),
|
eTrace = ExposureTraceUtils.appendTrace(traceEvent),
|
||||||
event = ExposureType.DOWNLOAD_COMPLETE
|
event = ExposureType.DOWNLOAD_COMPLETE
|
||||||
).apply {
|
)
|
||||||
this.payload.certification = RealNameHelper.getCertificationStatus()
|
|
||||||
}
|
|
||||||
exposureEvent.payload.host = host
|
exposureEvent.payload.host = host
|
||||||
exposureEvent.payload.path = path
|
exposureEvent.payload.path = path
|
||||||
exposureEvent.payload.speed = speed
|
|
||||||
|
|
||||||
ExposureManager.log(exposureEvent)
|
ExposureManager.log(exposureEvent)
|
||||||
ExposureManager.commitSavedExposureEvents(forcedUpload = true)
|
ExposureManager.commitSavedExposureEvents(forcedUpload = true)
|
||||||
|
|
||||||
return exposureEvent
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun getDownloadType(apkEntity: ApkEntity, gameId: String, asVGame: Boolean): DownloadType {
|
fun getDownloadType(apkEntity: ApkEntity, gameId: String, isVGame: Boolean): DownloadType {
|
||||||
return when {
|
return when {
|
||||||
asVGame -> getVGameDownloadType(apkEntity, gameId)
|
isVGame -> getVGameDownloadType(apkEntity, gameId)
|
||||||
PackageUtils.isInstalled(
|
PackageUtils.isInstalled(
|
||||||
HaloApp.getInstance().application,
|
HaloApp.getInstance().application,
|
||||||
apkEntity.packageName
|
apkEntity.packageName
|
||||||
@ -109,7 +93,7 @@ object ExposureUtils {
|
|||||||
|
|
||||||
private fun getVGameDownloadType(apkEntity: ApkEntity, gameId: String): DownloadType {
|
private fun getVGameDownloadType(apkEntity: ApkEntity, gameId: String): DownloadType {
|
||||||
return when {
|
return when {
|
||||||
PackagesManager.isCanUpdate(gameId, apkEntity.packageName, asVGame = true) -> DownloadType.FUN_UPDATE
|
PackagesManager.isCanUpdate(gameId, apkEntity.packageName) -> DownloadType.FUN_UPDATE
|
||||||
else -> DownloadType.FUN_DOWNLOAD
|
else -> DownloadType.FUN_DOWNLOAD
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,5 @@
|
|||||||
package com.gh.common.exposure
|
package com.gh.common.exposure
|
||||||
|
|
||||||
import com.gh.gamecenter.feature.exposure.ExposureEvent
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 统计曝光的列表的 adapter 需要实现这个接口
|
* 统计曝光的列表的 adapter 需要实现这个接口
|
||||||
*/
|
*/
|
||||||
|
|||||||
15
app/src/main/java/com/gh/common/exposure/time/TimeUtil.kt
Normal file
15
app/src/main/java/com/gh/common/exposure/time/TimeUtil.kt
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
package com.gh.common.exposure.time
|
||||||
|
|
||||||
|
import com.gh.common.FixedRateJobHelper
|
||||||
|
|
||||||
|
object TimeUtil {
|
||||||
|
|
||||||
|
fun currentTimeMillis(): Long {
|
||||||
|
return FixedRateJobHelper.timeDeltaBetweenServerAndClient + System.currentTimeMillis()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun currentTime(): Int {
|
||||||
|
return ((FixedRateJobHelper.timeDeltaBetweenServerAndClient + System.currentTimeMillis()) / 1000).toInt()
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -1,15 +1,12 @@
|
|||||||
package com.gh.common.filter
|
package com.gh.common.filter
|
||||||
|
|
||||||
import androidx.annotation.Keep
|
import androidx.annotation.Keep
|
||||||
import com.gh.gamecenter.feature.entity.IpInfo
|
|
||||||
import com.google.gson.annotations.SerializedName
|
import com.google.gson.annotations.SerializedName
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
class RegionSetting(
|
data class RegionSetting(
|
||||||
@SerializedName("game_mirror")
|
@SerializedName("game_mirror")
|
||||||
var mirrorGameIdSet: HashSet<String>,
|
var mirrorGameIdSet: HashSet<String>,
|
||||||
@SerializedName("game_mirror2")
|
|
||||||
var mirrorGameIdSet2: HashSet<String>?,
|
|
||||||
@SerializedName("game_block")
|
@SerializedName("game_block")
|
||||||
var filterGameIdSet: HashSet<String>,
|
var filterGameIdSet: HashSet<String>,
|
||||||
@SerializedName("channel_control")
|
@SerializedName("channel_control")
|
||||||
@ -17,13 +14,11 @@ class RegionSetting(
|
|||||||
@SerializedName("game_h5_download")
|
@SerializedName("game_h5_download")
|
||||||
var gameH5DownloadList: List<GameH5Download>,
|
var gameH5DownloadList: List<GameH5Download>,
|
||||||
@SerializedName("game_special_download")
|
@SerializedName("game_special_download")
|
||||||
var gameSpecialDownloadInfoList: List<GameSpecialDownloadInfo>,
|
var gameSpecialDownloadInfoList: List<GameSpecialDownloadInfo>
|
||||||
@SerializedName("ip_info")
|
|
||||||
var ipInfo: IpInfo? = null
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
class ChannelControl(
|
data class ChannelControl(
|
||||||
@SerializedName("game_category")
|
@SerializedName("game_category")
|
||||||
var gameCategory: String,
|
var gameCategory: String,
|
||||||
@SerializedName("effect")
|
@SerializedName("effect")
|
||||||
@ -31,7 +26,7 @@ class RegionSetting(
|
|||||||
)
|
)
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
class GameH5Download(
|
data class GameH5Download(
|
||||||
@SerializedName("game_id")
|
@SerializedName("game_id")
|
||||||
var gameId: String,// 游戏id
|
var gameId: String,// 游戏id
|
||||||
@SerializedName("h5_link")
|
@SerializedName("h5_link")
|
||||||
@ -42,7 +37,7 @@ class RegionSetting(
|
|||||||
var buttonText: String,// 按钮文案
|
var buttonText: String,// 按钮文案
|
||||||
)
|
)
|
||||||
|
|
||||||
class GameSpecialDownloadInfo(
|
data class GameSpecialDownloadInfo(
|
||||||
@SerializedName("game_id")
|
@SerializedName("game_id")
|
||||||
var gameId: String = "",
|
var gameId: String = "",
|
||||||
@SerializedName("bbs_id")
|
@SerializedName("bbs_id")
|
||||||
|
|||||||
@ -1,16 +1,14 @@
|
|||||||
package com.gh.common.filter
|
package com.gh.common.filter
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
import android.annotation.SuppressLint
|
||||||
import com.gh.gamecenter.R
|
|
||||||
import com.gh.gamecenter.common.constant.Constants
|
import com.gh.gamecenter.common.constant.Constants
|
||||||
import com.gh.gamecenter.common.retrofit.BiResponse
|
import com.gh.gamecenter.core.utils.SPUtils
|
||||||
import com.gh.gamecenter.common.utils.debounceActionWithInterval
|
import com.gh.gamecenter.common.utils.debounceActionWithInterval
|
||||||
import com.gh.gamecenter.common.utils.toJson
|
import com.gh.gamecenter.common.utils.toJson
|
||||||
import com.gh.gamecenter.common.utils.toObject
|
import com.gh.gamecenter.common.utils.toObject
|
||||||
import com.gh.gamecenter.core.utils.SPUtils
|
import com.gh.gamecenter.R
|
||||||
import com.gh.gamecenter.feature.entity.GameEntity
|
import com.gh.gamecenter.entity.GameEntity
|
||||||
import com.gh.gamecenter.feature.entity.IpInfo
|
import com.gh.gamecenter.common.retrofit.BiResponse
|
||||||
import com.gh.gamecenter.feature.entity.SimpleGame
|
|
||||||
import com.gh.gamecenter.retrofit.RetrofitManager
|
import com.gh.gamecenter.retrofit.RetrofitManager
|
||||||
import com.halo.assistant.HaloApp
|
import com.halo.assistant.HaloApp
|
||||||
import io.reactivex.functions.Function
|
import io.reactivex.functions.Function
|
||||||
@ -18,37 +16,16 @@ import io.reactivex.schedulers.Schedulers
|
|||||||
|
|
||||||
object RegionSettingHelper {
|
object RegionSettingHelper {
|
||||||
|
|
||||||
// 是否是初始化调用
|
|
||||||
private var mIsInit = true
|
|
||||||
|
|
||||||
private var mChannelControl: RegionSetting.ChannelControl? = null
|
private var mChannelControl: RegionSetting.ChannelControl? = null
|
||||||
private var mFilterGameIdSet: HashSet<String>? = hashSetOf()
|
private var mFilterGameIdSet: HashSet<String>? = hashSetOf()
|
||||||
private var mDisplayMirrorGameIdSet: HashSet<String>? = hashSetOf()
|
private var mDisplayMirrorIfoGameIdSet: HashSet<String>? = hashSetOf()
|
||||||
private var mDisplayMirrorGameIdSet2: HashSet<String>? = hashSetOf()
|
|
||||||
private var mGameH5DownloadList: List<RegionSetting.GameH5Download>? = listOf()
|
private var mGameH5DownloadList: List<RegionSetting.GameH5Download>? = listOf()
|
||||||
private var mGameSpecialDownloadInfoList: List<RegionSetting.GameSpecialDownloadInfo>? = listOf()
|
private var mGameSpecialDownloadInfoList: List<RegionSetting.GameSpecialDownloadInfo>? = listOf()
|
||||||
private var mIpInfo: IpInfo? = null
|
|
||||||
|
|
||||||
private const val SP_SETTING = "region_setting"
|
private const val SP_SETTING = "region_setting"
|
||||||
const val SP_SETTING_FAILURE = "region_setting_failure"
|
|
||||||
|
|
||||||
@JvmStatic
|
|
||||||
fun shouldThisGameDisplayMirrorInfo(gameId: String): Boolean {
|
fun shouldThisGameDisplayMirrorInfo(gameId: String): Boolean {
|
||||||
return mDisplayMirrorGameIdSet?.contains(gameId) == true
|
return mDisplayMirrorIfoGameIdSet?.contains(gameId) ?: false
|
||||||
|| mDisplayMirrorGameIdSet2?.contains(gameId) == true
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取镜像数据的位置,是归属镜像 1 还是镜像 2
|
|
||||||
*/
|
|
||||||
fun getMirrorPosition(gameId: String): Int {
|
|
||||||
return if (mDisplayMirrorGameIdSet?.contains(gameId) == true) {
|
|
||||||
1
|
|
||||||
} else if (mDisplayMirrorGameIdSet2?.contains(gameId) == true) {
|
|
||||||
2
|
|
||||||
} else {
|
|
||||||
-1
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
@ -62,8 +39,6 @@ object RegionSettingHelper {
|
|||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun getGameSpecialDownloadInfo(gameId: String) = mGameSpecialDownloadInfoList?.find { it.gameId == gameId }
|
fun getGameSpecialDownloadInfo(gameId: String) = mGameSpecialDownloadInfoList?.find { it.gameId == gameId }
|
||||||
|
|
||||||
fun getIpInfo(): IpInfo? = mIpInfo
|
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun filterGame(list: List<GameEntity>?): ArrayList<GameEntity> {
|
fun filterGame(list: List<GameEntity>?): ArrayList<GameEntity> {
|
||||||
if (list == null) return arrayListOf()
|
if (list == null) return arrayListOf()
|
||||||
@ -77,19 +52,6 @@ object RegionSettingHelper {
|
|||||||
return listCopy
|
return listCopy
|
||||||
}
|
}
|
||||||
|
|
||||||
@JvmStatic
|
|
||||||
fun filterSimpleGame(list: List<SimpleGame>?): ArrayList<SimpleGame> {
|
|
||||||
if (list == null) return arrayListOf()
|
|
||||||
|
|
||||||
if (mFilterGameIdSet?.isEmpty() == true) {
|
|
||||||
if (list is ArrayList) return list
|
|
||||||
}
|
|
||||||
|
|
||||||
val listCopy: ArrayList<SimpleGame> = if (list is ArrayList) list else ArrayList(list)
|
|
||||||
listCopy.removeAll { mFilterGameIdSet?.contains(it.id) ?: false }
|
|
||||||
return listCopy
|
|
||||||
}
|
|
||||||
|
|
||||||
@JvmField
|
@JvmField
|
||||||
var filterGame = Function { list: List<GameEntity> ->
|
var filterGame = Function { list: List<GameEntity> ->
|
||||||
filterGame(list)
|
filterGame(list)
|
||||||
@ -114,15 +76,6 @@ object RegionSettingHelper {
|
|||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun getRegionSetting() {
|
fun getRegionSetting() {
|
||||||
debounceActionWithInterval(R.string.app_name, 5000) {
|
debounceActionWithInterval(R.string.app_name, 5000) {
|
||||||
|
|
||||||
// 初始启动时先使用历史数据
|
|
||||||
if (mIsInit) {
|
|
||||||
SPUtils.getString(SP_SETTING).toObject<RegionSetting>()?.let {
|
|
||||||
updateSettingsInMemory(it)
|
|
||||||
}
|
|
||||||
mIsInit = false
|
|
||||||
}
|
|
||||||
|
|
||||||
// 使用默认的 Schdulers.io() 可能会触发 OOM
|
// 使用默认的 Schdulers.io() 可能会触发 OOM
|
||||||
RetrofitManager.getInstance()
|
RetrofitManager.getInstance()
|
||||||
.api
|
.api
|
||||||
@ -135,10 +88,9 @@ object RegionSettingHelper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onFailure(exception: Exception) {
|
override fun onFailure(exception: Exception) {
|
||||||
SPUtils.getString(SP_SETTING).toObject<RegionSetting>()?.let {
|
SPUtils.getString(SP_SETTING)?.toObject<RegionSetting>()?.let {
|
||||||
updateSettingsInMemory(it)
|
updateSettingsInMemory(it)
|
||||||
}
|
}
|
||||||
SPUtils.setBoolean(SP_SETTING_FAILURE, true)
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -146,12 +98,10 @@ object RegionSettingHelper {
|
|||||||
|
|
||||||
private fun updateSettingsInMemory(data: RegionSetting) {
|
private fun updateSettingsInMemory(data: RegionSetting) {
|
||||||
mFilterGameIdSet = data.filterGameIdSet
|
mFilterGameIdSet = data.filterGameIdSet
|
||||||
mDisplayMirrorGameIdSet = data.mirrorGameIdSet
|
mDisplayMirrorIfoGameIdSet = data.mirrorGameIdSet
|
||||||
mDisplayMirrorGameIdSet2 = data.mirrorGameIdSet2
|
|
||||||
mChannelControl = data.channelControl
|
mChannelControl = data.channelControl
|
||||||
mGameH5DownloadList = data.gameH5DownloadList
|
mGameH5DownloadList = data.gameH5DownloadList
|
||||||
mGameSpecialDownloadInfoList = data.gameSpecialDownloadInfoList
|
mGameSpecialDownloadInfoList = data.gameSpecialDownloadInfoList
|
||||||
mIpInfo = data.ipInfo
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -9,17 +9,16 @@ import androidx.sqlite.db.SupportSQLiteDatabase
|
|||||||
import com.gh.gamecenter.entity.GamesCollectionEntity
|
import com.gh.gamecenter.entity.GamesCollectionEntity
|
||||||
import com.gh.gamecenter.entity.HistoryGameEntity
|
import com.gh.gamecenter.entity.HistoryGameEntity
|
||||||
import com.gh.gamecenter.entity.MyVideoEntity
|
import com.gh.gamecenter.entity.MyVideoEntity
|
||||||
import com.gh.gamecenter.feature.entity.NewsEntity
|
import com.gh.gamecenter.entity.NewsEntity
|
||||||
import com.gh.gamecenter.feature.entity.AnswerEntity
|
import com.gh.gamecenter.qa.entity.AnswerEntity
|
||||||
import com.gh.gamecenter.feature.entity.ArticleEntity
|
import com.gh.gamecenter.qa.entity.ArticleEntity
|
||||||
import com.gh.gamecenter.feature.room.converter.*
|
|
||||||
import com.gh.gamecenter.room.converter.*
|
import com.gh.gamecenter.room.converter.*
|
||||||
import com.gh.gamecenter.room.dao.*
|
import com.gh.gamecenter.room.dao.*
|
||||||
import com.halo.assistant.HaloApp
|
import com.halo.assistant.HaloApp
|
||||||
|
|
||||||
@Database(
|
@Database(
|
||||||
entities = [AnswerEntity::class, ArticleEntity::class, NewsEntity::class, HistoryGameEntity::class, MyVideoEntity::class, GamesCollectionEntity::class],
|
entities = [AnswerEntity::class, ArticleEntity::class, NewsEntity::class, HistoryGameEntity::class, MyVideoEntity::class, GamesCollectionEntity::class],
|
||||||
version = 14,
|
version = 11,
|
||||||
exportSchema = false
|
exportSchema = false
|
||||||
)
|
)
|
||||||
@TypeConverters(
|
@TypeConverters(
|
||||||
@ -29,7 +28,6 @@ import com.halo.assistant.HaloApp
|
|||||||
AnswerUserConverter::class,
|
AnswerUserConverter::class,
|
||||||
ThumbnailConverter::class,
|
ThumbnailConverter::class,
|
||||||
TagStyleListConverter::class,
|
TagStyleListConverter::class,
|
||||||
TagStyleConverter::class,
|
|
||||||
StringArrayListConverter::class,
|
StringArrayListConverter::class,
|
||||||
ListStringConverter::class,
|
ListStringConverter::class,
|
||||||
CommunityVideoConverter::class,
|
CommunityVideoConverter::class,
|
||||||
@ -40,9 +38,7 @@ import com.halo.assistant.HaloApp
|
|||||||
MeConverter::class,
|
MeConverter::class,
|
||||||
SimpleGameListConverter::class,
|
SimpleGameListConverter::class,
|
||||||
TagInfoListConverter::class,
|
TagInfoListConverter::class,
|
||||||
ActivityLabelListConverter::class,
|
ActivityLabelListConverter::class
|
||||||
IconFloatConverter::class,
|
|
||||||
SectionConverter::class
|
|
||||||
)
|
)
|
||||||
|
|
||||||
abstract class HistoryDatabase : RoomDatabase() {
|
abstract class HistoryDatabase : RoomDatabase() {
|
||||||
@ -131,27 +127,6 @@ abstract class HistoryDatabase : RoomDatabase() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val MIGRATION_11_12: Migration = object : Migration(11, 12) {
|
|
||||||
override fun migrate(database: SupportSQLiteDatabase) {
|
|
||||||
database.execSQL("Alter TABLE HistoryGameEntity add subtitle TEXT NOT NULL DEFAULT ''")
|
|
||||||
database.execSQL("Alter TABLE HistoryGameEntity add subtitleStyle TEXT")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val MIGRATION_12_13: Migration = object : Migration(12, 13) {
|
|
||||||
override fun migrate(database: SupportSQLiteDatabase) {
|
|
||||||
database.execSQL("Alter TABLE HistoryGameEntity add iconFloat TEXT")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val MIGRATION_13_14: Migration = object : Migration(13, 14) {
|
|
||||||
override fun migrate(database: SupportSQLiteDatabase) {
|
|
||||||
database.execSQL("Alter TABLE ArticleEntity add type TEXT NOT NULL DEFAULT 'community_article'")
|
|
||||||
database.execSQL("Alter TABLE ArticleEntity add sections TEXT NOT NULL DEFAULT ''")
|
|
||||||
database.execSQL("Alter TABLE ArticleEntity add tagActivityName TEXT NOT NULL DEFAULT ''")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val instance by lazy {
|
val instance by lazy {
|
||||||
Room.databaseBuilder(
|
Room.databaseBuilder(
|
||||||
HaloApp.getInstance().application,
|
HaloApp.getInstance().application,
|
||||||
@ -167,9 +142,6 @@ abstract class HistoryDatabase : RoomDatabase() {
|
|||||||
.addMigrations(MIGRATION_8_9)
|
.addMigrations(MIGRATION_8_9)
|
||||||
.addMigrations(MIGRATION_9_10)
|
.addMigrations(MIGRATION_9_10)
|
||||||
.addMigrations(MIGRATION_10_11)
|
.addMigrations(MIGRATION_10_11)
|
||||||
.addMigrations(MIGRATION_11_12)
|
|
||||||
.addMigrations(MIGRATION_12_13)
|
|
||||||
.addMigrations(MIGRATION_13_14)
|
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,9 +6,10 @@ import com.gh.gamecenter.common.utils.removeVideoContent
|
|||||||
import com.gh.gamecenter.common.utils.tryCatchInRelease
|
import com.gh.gamecenter.common.utils.tryCatchInRelease
|
||||||
import com.gh.gamecenter.core.runOnIoThread
|
import com.gh.gamecenter.core.runOnIoThread
|
||||||
import com.gh.gamecenter.entity.*
|
import com.gh.gamecenter.entity.*
|
||||||
import com.gh.gamecenter.feature.entity.*
|
|
||||||
import com.gh.gamecenter.qa.entity.AnswerDetailEntity
|
import com.gh.gamecenter.qa.entity.AnswerDetailEntity
|
||||||
|
import com.gh.gamecenter.qa.entity.AnswerEntity
|
||||||
import com.gh.gamecenter.qa.entity.ArticleDetailEntity
|
import com.gh.gamecenter.qa.entity.ArticleDetailEntity
|
||||||
|
import com.gh.gamecenter.qa.entity.ArticleEntity
|
||||||
|
|
||||||
object HistoryHelper {
|
object HistoryHelper {
|
||||||
|
|
||||||
@ -53,7 +54,6 @@ object HistoryHelper {
|
|||||||
historyGame.des = ""
|
historyGame.des = ""
|
||||||
historyGame.icon = updateEntity.rawIcon ?: updateEntity.icon
|
historyGame.icon = updateEntity.rawIcon ?: updateEntity.icon
|
||||||
historyGame.iconSubscript = updateEntity.iconSubscript
|
historyGame.iconSubscript = updateEntity.iconSubscript
|
||||||
historyGame.iconFloat = updateEntity.iconFloat
|
|
||||||
historyGame.name = updateEntity.name
|
historyGame.name = updateEntity.name
|
||||||
historyGame.tagStyle = updateEntity.tagStyle
|
historyGame.tagStyle = updateEntity.tagStyle
|
||||||
return historyGame
|
return historyGame
|
||||||
@ -68,11 +68,9 @@ object HistoryHelper {
|
|||||||
historyGame.des = gameEntity.des
|
historyGame.des = gameEntity.des
|
||||||
historyGame.icon = gameEntity.rawIcon ?: gameEntity.icon
|
historyGame.icon = gameEntity.rawIcon ?: gameEntity.icon
|
||||||
historyGame.iconSubscript = gameEntity.iconSubscript
|
historyGame.iconSubscript = gameEntity.iconSubscript
|
||||||
historyGame.iconFloat = gameEntity.iconFloat
|
|
||||||
historyGame.name = gameEntity.name
|
historyGame.name = gameEntity.name
|
||||||
historyGame.tagStyle = gameEntity.tagStyle
|
historyGame.tagStyle = gameEntity.tagStyle
|
||||||
historyGame.subtitle = gameEntity.subtitle
|
historyGame.tag = gameEntity.getTag()
|
||||||
historyGame.subtitleStyle = gameEntity.subtitleStyle
|
|
||||||
return historyGame
|
return historyGame
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -104,7 +102,7 @@ object HistoryHelper {
|
|||||||
fun deleteArticleEntity(articleId: String) {
|
fun deleteArticleEntity(articleId: String) {
|
||||||
runOnIoThread {
|
runOnIoThread {
|
||||||
tryCatchInRelease {
|
tryCatchInRelease {
|
||||||
HistoryDatabase.instance.articleDao().deleteArticle(ArticleEntity(_id = articleId))
|
HistoryDatabase.instance.articleDao().deleteArticle(ArticleEntity(id = articleId))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -165,9 +163,6 @@ object HistoryHelper {
|
|||||||
articleEntity.images = articleDetailEntity.images
|
articleEntity.images = articleDetailEntity.images
|
||||||
articleEntity.imagesInfo = articleDetailEntity.imagesInfo
|
articleEntity.imagesInfo = articleDetailEntity.imagesInfo
|
||||||
articleEntity.videos = articleDetailEntity.videos
|
articleEntity.videos = articleDetailEntity.videos
|
||||||
articleEntity.tagActivityName = articleDetailEntity.tagActivityName
|
|
||||||
articleEntity.sections = articleDetailEntity.sections ?: emptyList()
|
|
||||||
articleEntity.type = "community_article"
|
|
||||||
|
|
||||||
return articleEntity
|
return articleEntity
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user