Compare commits
2 Commits
main
...
feature-ho
| Author | SHA1 | Date | |
|---|---|---|---|
| 41c40dfbc4 | |||
| 5d9ecab1b0 |
208
.github/workflows/beta_ci.yml
vendored
208
.github/workflows/beta_ci.yml
vendored
@ -1,208 +0,0 @@
|
|||||||
name: Pilipala Beta
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- "x-main"
|
|
||||||
paths-ignore:
|
|
||||||
- "**.md"
|
|
||||||
- "**.txt"
|
|
||||||
- ".github/**"
|
|
||||||
- ".idea/**"
|
|
||||||
- "!.github/workflows/**"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update_version:
|
|
||||||
name: Read and update version
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
# 定义输出变量 version,以便在其他job中引用
|
|
||||||
new_version: ${{ steps.version.outputs.new_version }}
|
|
||||||
last_commit: ${{ steps.get-last-commit.outputs.last_commit }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ github.ref_name }}
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: 获取first parent commit次数
|
|
||||||
id: get-first-parent-commit-count
|
|
||||||
run: |
|
|
||||||
version=$(yq e .version pubspec.yaml | cut -d "+" -f 1)
|
|
||||||
recent_release_tag=$(git tag -l | grep $version | egrep -v "[-|+]" || true)
|
|
||||||
if [[ "x$recent_release_tag" == "x" ]]; then
|
|
||||||
echo "当前版本tag不存在,请手动生成tag."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
git log --oneline --first-parent $recent_release_tag..HEAD
|
|
||||||
first_parent_commit_count=$(git rev-list --first-parent --count $recent_release_tag..HEAD)
|
|
||||||
echo "count=$first_parent_commit_count" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: 获取最后一次提交
|
|
||||||
id: get-last-commit
|
|
||||||
run: |
|
|
||||||
last_commit=$(git log -1 --pretty="%h %s" --first-parent)
|
|
||||||
echo "last_commit=$last_commit" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: 更新版本号
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
# 读取版本号
|
|
||||||
VERSION=$(yq e .version pubspec.yaml | cut -d "+" -f 1)
|
|
||||||
|
|
||||||
# 获取GitHub Actions的run_number
|
|
||||||
#RUN_NUMBER=${{ github.run_number }}
|
|
||||||
|
|
||||||
# 构建新版本号
|
|
||||||
NEW_VERSION=$VERSION-beta.${{ steps.get-first-parent-commit-count.outputs.count }}
|
|
||||||
|
|
||||||
# 输出新版本号
|
|
||||||
echo "New version: $NEW_VERSION"
|
|
||||||
|
|
||||||
# 设置新版本号为输出变量
|
|
||||||
echo "new_version=$NEW_VERSION" >>$GITHUB_OUTPUT
|
|
||||||
|
|
||||||
android:
|
|
||||||
name: Build CI (Android)
|
|
||||||
needs: update_version
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ github.ref_name }}
|
|
||||||
|
|
||||||
- name: 构建Java环境
|
|
||||||
uses: actions/setup-java@v3
|
|
||||||
with:
|
|
||||||
distribution: "zulu"
|
|
||||||
java-version: "17"
|
|
||||||
token: ${{secrets.GIT_TOKEN}}
|
|
||||||
|
|
||||||
- name: 检查缓存
|
|
||||||
uses: actions/cache@v2
|
|
||||||
id: cache-flutter
|
|
||||||
with:
|
|
||||||
path: /root/flutter-sdk
|
|
||||||
key: ${{ runner.os }}-flutter-${{ hashFiles('**/pubspec.lock') }}
|
|
||||||
|
|
||||||
- name: 安装Flutter
|
|
||||||
if: steps.cache-flutter.outputs.cache-hit != 'true'
|
|
||||||
uses: subosito/flutter-action@v2
|
|
||||||
with:
|
|
||||||
flutter-version: 3.19.6
|
|
||||||
channel: any
|
|
||||||
|
|
||||||
- name: 下载项目依赖
|
|
||||||
run: flutter pub get
|
|
||||||
|
|
||||||
- name: 解码生成 jks
|
|
||||||
run: echo $KEYSTORE_BASE64 | base64 -di > android/app/vvex.jks
|
|
||||||
env:
|
|
||||||
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
|
|
||||||
|
|
||||||
- name: 更新版本号
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
# 更新pubspec.yaml文件中的版本号
|
|
||||||
sed -i "s/version: .*+/version: ${{ needs.update_version.outputs.new_version }}+/g" pubspec.yaml
|
|
||||||
|
|
||||||
- name: flutter build apk
|
|
||||||
run: flutter build apk --release --split-per-abi
|
|
||||||
env:
|
|
||||||
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
|
||||||
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
|
|
||||||
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD}}
|
|
||||||
|
|
||||||
- name: 重命名应用
|
|
||||||
run: |
|
|
||||||
for file in build/app/outputs/flutter-apk/app-*.apk; do
|
|
||||||
if [[ $file =~ app-(.?*)release.apk ]]; then
|
|
||||||
new_file_name="build/app/outputs/flutter-apk/Pili-${BASH_REMATCH[1]}v${{ needs.update_version.outputs.new_version }}.apk"
|
|
||||||
mv "$file" "$new_file_name"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
- name: 上传
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: Pilipala-Beta
|
|
||||||
path: |
|
|
||||||
build/app/outputs/flutter-apk/Pili-*.apk
|
|
||||||
|
|
||||||
iOS:
|
|
||||||
name: Build CI (iOS)
|
|
||||||
needs: update_version
|
|
||||||
runs-on: macos-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ github.ref_name }}
|
|
||||||
|
|
||||||
- name: 安装Flutter
|
|
||||||
if: steps.cache-flutter.outputs.cache-hit != 'true'
|
|
||||||
uses: subosito/flutter-action@v2.10.0
|
|
||||||
with:
|
|
||||||
cache: true
|
|
||||||
flutter-version: 3.16.5
|
|
||||||
|
|
||||||
- name: 更新版本号
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
# 更新pubspec.yaml文件中的版本号
|
|
||||||
sed -i "" "s/version: .*+/version: ${{ needs.update_version.outputs.new_version }}+/g" pubspec.yaml
|
|
||||||
|
|
||||||
- name: flutter build ipa
|
|
||||||
run: |
|
|
||||||
flutter build ios --release --no-codesign
|
|
||||||
ln -sf ./build/ios/iphoneos Payload
|
|
||||||
zip -r9 app.ipa Payload/runner.app
|
|
||||||
|
|
||||||
- name: 重命名应用
|
|
||||||
run: |
|
|
||||||
DATE=${{ steps.date.outputs.date }}
|
|
||||||
for file in app.ipa; do
|
|
||||||
new_file_name="build/Pili-v${{ needs.update_version.outputs.new_version }}.ipa"
|
|
||||||
mv "$file" "$new_file_name"
|
|
||||||
done
|
|
||||||
|
|
||||||
- name: 上传
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
if-no-files-found: error
|
|
||||||
name: Pilipala-Beta
|
|
||||||
path: |
|
|
||||||
build/Pili-*.ipa
|
|
||||||
|
|
||||||
upload:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
needs:
|
|
||||||
- update_version
|
|
||||||
- android
|
|
||||||
- iOS
|
|
||||||
steps:
|
|
||||||
- uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: Pilipala-Beta
|
|
||||||
path: ./Pilipala-Beta
|
|
||||||
|
|
||||||
- name: 发送到Telegram频道
|
|
||||||
uses: xireiki/channel-post@v1.0.7
|
|
||||||
with:
|
|
||||||
bot_token: ${{ secrets.BOT_TOKEN }}
|
|
||||||
chat_id: ${{ secrets.CHAT_ID }}
|
|
||||||
large_file: true
|
|
||||||
api_id: ${{ secrets.TELEGRAM_API_ID }}
|
|
||||||
api_hash: ${{ secrets.TELEGRAM_API_HASH }}
|
|
||||||
method: sendFile
|
|
||||||
path: Pilipala-Beta/*
|
|
||||||
parse_mode: Markdown
|
|
||||||
context: "*Beta版本: v${{ needs.update_version.outputs.new_version }}*\n更新内容: [${{ needs.update_version.outputs.last_commit }}]"
|
|
||||||
@ -36,7 +36,7 @@ jobs:
|
|||||||
if: steps.cache-flutter.outputs.cache-hit != 'true'
|
if: steps.cache-flutter.outputs.cache-hit != 'true'
|
||||||
uses: subosito/flutter-action@v2
|
uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: 3.19.6
|
flutter-version: 3.16.5
|
||||||
channel: any
|
channel: any
|
||||||
|
|
||||||
- name: 下载项目依赖
|
- name: 下载项目依赖
|
||||||
@ -98,7 +98,7 @@ jobs:
|
|||||||
uses: subosito/flutter-action@v2.10.0
|
uses: subosito/flutter-action@v2.10.0
|
||||||
with:
|
with:
|
||||||
cache: true
|
cache: true
|
||||||
flutter-version: 3.19.6
|
flutter-version: 3.16.5
|
||||||
|
|
||||||
- name: flutter build ipa
|
- name: flutter build ipa
|
||||||
run: |
|
run: |
|
||||||
63
README.md
63
README.md
@ -2,6 +2,8 @@
|
|||||||
<img width="200" height="200" src="https://github.com/guozhigq/pilipala/blob/main/assets/images/logo/logo_android.png">
|
<img width="200" height="200" src="https://github.com/guozhigq/pilipala/blob/main/assets/images/logo/logo_android.png">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<h1>PiliPala</h1>
|
<h1>PiliPala</h1>
|
||||||
<div align="center">
|
<div align="center">
|
||||||
@ -9,7 +11,6 @@
|
|||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<p>使用Flutter开发的BiliBili第三方客户端</p>
|
<p>使用Flutter开发的BiliBili第三方客户端</p>
|
||||||
|
|
||||||
@ -22,41 +23,46 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
## 开发环境
|
## 开发环境
|
||||||
|
Xcode 13.4 不支持**auto_orientation**,请注释相关代码
|
||||||
Xcode 13.4 不支持 ```auto_orientation```,请注释相关代码
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
[✓] Flutter (Channel stable, 3.19.6, on macOS 14.1.2 23B92 darwin-arm64, locale
|
[✓] Flutter (Channel stable, 3.16.4, on macOS 14.1.2 23B92 darwin-arm64, locale
|
||||||
zh-Hans-CN)
|
zh-Hans-CN)
|
||||||
[✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
|
[✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
|
||||||
[✓] Xcode - develop for iOS and macOS (Xcode 15.1)
|
[✓] Xcode - develop for iOS and macOS (Xcode 15.1)
|
||||||
[✓] Chrome - develop for the web
|
[✓] Chrome - develop for the web
|
||||||
[✓] Android Studio (version 2022.3)
|
[✓] Android Studio (version 2022.3)
|
||||||
[✓] VS Code (version 1.87.2)
|
[✓] VS Code (version 1.85.1)
|
||||||
[✓] Connected device (3 available)
|
[✓] Connected device (3 available)
|
||||||
[✓] Network resources
|
[✓] Network resources
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
|
||||||
## 技术交流
|
## 技术交流
|
||||||
|
|
||||||
Telegram: [https://t.me/+1DFtqS6usUM5MDNl](https://t.me/+1DFtqS6usUM5MDNl)
|
Telegram: https://t.me/+lm_oOVmF0RJiODk1
|
||||||
|
|
||||||
Telegram Beta 版本:@PiliPala_Beta
|
|
||||||
|
|
||||||
QQ频道: https://pd.qq.com/s/365esodk3
|
QQ频道: https://pd.qq.com/s/365esodk3
|
||||||
|
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
## 功能
|
## 功能
|
||||||
|
|
||||||
目前着重移动端(Android、iOS),暂时没有适配桌面端、Pad端、手表端等
|
目前着重移动端(Android、iOS),暂时没有适配桌面端、Pad端、手表端等
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
现有功能及[开发计划](https://github.com/users/guozhigq/projects/5)
|
现有功能及[开发计划](https://github.com/users/guozhigq/projects/5)
|
||||||
|
|
||||||
|
|
||||||
- [x] 推荐视频列表(app端)
|
- [x] 推荐视频列表(app端)
|
||||||
- [x] 最热视频列表
|
- [x] 最热视频列表
|
||||||
- [x] 热门直播
|
- [x] 热门直播
|
||||||
- [x] 番剧列表
|
- [x] 番剧列表
|
||||||
- [x] 屏蔽黑名单内用户视频
|
- [x] 屏蔽黑名单内用户视频
|
||||||
- [x] 排行榜
|
|
||||||
|
|
||||||
- [x] 用户相关
|
- [x] 用户相关
|
||||||
- [x] 粉丝、关注用户、拉黑用户查看
|
- [x] 粉丝、关注用户、拉黑用户查看
|
||||||
@ -66,13 +72,11 @@ QQ 频道: https://pd.qq.com/s/365esodk3
|
|||||||
- [x] 稍后再看
|
- [x] 稍后再看
|
||||||
- [x] 观看记录
|
- [x] 观看记录
|
||||||
- [x] 我的收藏
|
- [x] 我的收藏
|
||||||
- [x] 黑名单管理
|
|
||||||
|
|
||||||
- [x] 动态相关
|
- [x] 动态相关
|
||||||
- [x] 全部、投稿、番剧分类查看
|
- [x] 全部、投稿、番剧分类查看
|
||||||
- [x] 动态评论查看
|
- [x] 动态评论查看
|
||||||
- [x] 动态评论回复功能
|
- [x] 动态评论回复功能
|
||||||
- [x] 动态未读标记
|
|
||||||
|
|
||||||
- [x] 视频播放相关
|
- [x] 视频播放相关
|
||||||
- [x] 双击快进/快退
|
- [x] 双击快进/快退
|
||||||
@ -82,16 +86,14 @@ QQ 频道: https://pd.qq.com/s/365esodk3
|
|||||||
- [x] 水平方向手势快进/快退
|
- [x] 水平方向手势快进/快退
|
||||||
- [x] 全屏方向设置
|
- [x] 全屏方向设置
|
||||||
- [x] 倍速选择/长按2倍速
|
- [x] 倍速选择/长按2倍速
|
||||||
- [x] 硬件加速 (视机型而定)
|
- [x] 硬件加速(视机型而定)
|
||||||
- [x] 画质选择 (高清画质未解锁)
|
- [x] 画质选择(高清画质未解锁)
|
||||||
- [x] 音质选择 (视视频而定)
|
- [x] 音质选择(视视频而定)
|
||||||
- [x] 解码格式选择 (视视频而定)
|
- [x] 解码格式选择(视视频而定)
|
||||||
- [x] 弹幕
|
- [x] 弹幕
|
||||||
- [x] 字幕
|
- [ ] 字幕
|
||||||
- [x] 记忆播放
|
- [x] 记忆播放
|
||||||
- [x] 视频比例:高度/宽度适应、填充、包含等
|
- [x] 视频比例:高度/宽度适应、填充、包含等
|
||||||
- [x] 视频快照
|
|
||||||
- [x] 直播弹幕
|
|
||||||
|
|
||||||
- [x] 搜索相关
|
- [x] 搜索相关
|
||||||
- [x] 热搜
|
- [x] 热搜
|
||||||
@ -106,7 +108,7 @@ QQ 频道: https://pd.qq.com/s/365esodk3
|
|||||||
- [x] 相关视频查看
|
- [x] 相关视频查看
|
||||||
- [x] 评论用户身份标识
|
- [x] 评论用户身份标识
|
||||||
- [x] 评论(排序)查看、二楼评论查看
|
- [x] 评论(排序)查看、二楼评论查看
|
||||||
- [x] 主楼、二楼评论/表情回复功能
|
- [x] 主楼、二楼评论回复功能
|
||||||
- [x] 评论点赞
|
- [x] 评论点赞
|
||||||
- [x] 评论笔记图片查看、保存
|
- [x] 评论笔记图片查看、保存
|
||||||
|
|
||||||
@ -119,25 +121,24 @@ QQ 频道: https://pd.qq.com/s/365esodk3
|
|||||||
- [x] 自动全屏
|
- [x] 自动全屏
|
||||||
- [ ] 等等
|
- [ ] 等等
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
## 下载
|
## 下载
|
||||||
|
|
||||||
可以通过右侧 Releases 进行下载或拉取代码到本地进行编译
|
可以通过右侧release进行下载或拉取代码到本地进行编译
|
||||||
|
|
||||||
### 从 F-Droid 安装
|
<br/>
|
||||||
|
|
||||||
<a href="https://f-droid.org/packages/com.guozhigq.pilipala">
|
|
||||||
<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on-zh-cn.png"
|
|
||||||
alt="Get it on F-Droid"
|
|
||||||
height="80">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
## 声明
|
## 声明
|
||||||
|
|
||||||
此项目 (PiliPala) 是个人为了兴趣而开发, 仅用于学习和测试。
|
此项目(PiliPala)是个人为了兴趣而开发, 仅用于学习和测试。
|
||||||
所用API皆从官方网站收集, 不提供任何破解内容。
|
所用API皆从官方网站收集, 不提供任何破解内容。
|
||||||
|
|
||||||
感谢使用
|
感谢使用
|
||||||
|
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
## 致谢
|
## 致谢
|
||||||
|
|
||||||
- [bilibili-API-collect](https://github.com/SocialSisterYi/bilibili-API-collect)
|
- [bilibili-API-collect](https://github.com/SocialSisterYi/bilibili-API-collect)
|
||||||
@ -145,3 +146,7 @@ QQ 频道: https://pd.qq.com/s/365esodk3
|
|||||||
- [media-kit](https://github.com/media-kit/media-kit)
|
- [media-kit](https://github.com/media-kit/media-kit)
|
||||||
- [dio](https://pub.dev/packages/dio)
|
- [dio](https://pub.dev/packages/dio)
|
||||||
- 等等
|
- 等等
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
|||||||
@ -45,7 +45,7 @@
|
|||||||
android:fullBackupContent="false"
|
android:fullBackupContent="false"
|
||||||
tools:replace="android:allowBackup">
|
tools:replace="android:allowBackup">
|
||||||
<activity
|
<activity
|
||||||
android:name="com.guozhigq.pilipala.MainActivity"
|
android:name="com.ryanheise.audioservice.AudioServiceActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:launchMode="singleTop"
|
android:launchMode="singleTop"
|
||||||
android:theme="@style/LaunchTheme"
|
android:theme="@style/LaunchTheme"
|
||||||
@ -223,10 +223,6 @@
|
|||||||
android:pathPattern="/mobile/video/.*" />
|
android:pathPattern="/mobile/video/.*" />
|
||||||
<data android:scheme="https" android:host="www.bilibili.com"
|
<data android:scheme="https" android:host="www.bilibili.com"
|
||||||
android:pathPattern="/mobile/video/.*" />
|
android:pathPattern="/mobile/video/.*" />
|
||||||
<data android:scheme="https" android:host="b23.tv"
|
|
||||||
android:pathPattern="/*" />
|
|
||||||
<data android:scheme="https" android:host="space.bilibili.com"
|
|
||||||
android:pathPattern="/*" />
|
|
||||||
|
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
package com.guozhigq.pilipala
|
package com.guozhigq.pilipala
|
||||||
|
|
||||||
// import io.flutter.embedding.android.FlutterActivity
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
import com.ryanheise.audioservice.AudioServiceActivity;
|
|
||||||
|
|
||||||
class MainActivity: AudioServiceActivity() {
|
|
||||||
|
|
||||||
|
class MainActivity: FlutterActivity() {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.9.0'
|
ext.kotlin_version = '1.7.10'
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 16 KiB |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" data-pointer="none" viewBox="0 0 24 24"><path fill-rule="evenodd" d="m8.085 4.891-.999-1.499a1.008 1.008 0 0 1 1.679-1.118l1.709 2.566c.54-.008 1.045-.012 1.515-.012h.13c.345 0 .707.003 1.088.007l1.862-2.59a1.008 1.008 0 0 1 1.637 1.177l-1.049 1.46c.788.02 1.631.046 2.53.078 1.958.069 3.468 1.6 3.74 3.507.088.613.13 2.158.16 3.276l.001.027c.01.333.017.63.025.856a.987.987 0 0 1-1.974.069c-.008-.23-.016-.539-.025-.881v-.002c-.028-1.103-.066-2.541-.142-3.065-.143-1.004-.895-1.78-1.854-1.813-2.444-.087-4.466-.13-6.064-.131-1.598 0-3.619.044-6.063.13a2.037 2.037 0 0 0-1.945 1.748c-.15 1.04-.225 2.341-.225 3.904 0 1.874.11 3.474.325 4.798.154.949.95 1.66 1.91 1.708a97.58 97.58 0 0 0 5.416.139.988.988 0 0 1 0 1.975c-2.196 0-3.61-.047-5.513-.141A4.012 4.012 0 0 1 2.197 17.7c-.236-1.446-.351-3.151-.351-5.116 0-1.64.08-3.035.245-4.184A4.013 4.013 0 0 1 5.92 4.96c.761-.027 1.483-.05 2.164-.069Zm4.436 4.707h-1.32v4.63h2.222v.848h-2.618v1.078h2.431a5.01 5.01 0 0 1 3.575-3.115V9.598h-1.276a8.59 8.59 0 0 0 .748-1.42l-1.089-.384a14.232 14.232 0 0 1-.814 1.804h-1.518l.693-.308a8.862 8.862 0 0 0-.814-1.408l-1.045.352c.297.396.572.847.825 1.364Zm-4.18 3.564.154-1.485h1.98V8.289h-3.2v.979h2.067v1.43H7.483l-.308 3.454h2.277c0 1.166-.044 1.925-.12 2.277-.078.352-.386.528-.936.528-.308 0-.616-.022-.902-.055l.297 1.067.062.004c.285.02.551.04.818.04 1.001-.066 1.562-.418 1.694-1.056.11-.638.176-1.903.176-3.795h-2.2Zm7.458.11v-.858h-1.254v.858H15.8Zm-2.376-.858v.858h-1.199v-.858h1.2Zm-1.199-.946h1.2v-.902h-1.2v.902Zm2.321 0v-.902H15.8v.902h-1.254Zm3.517 10.594a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-.002-1.502a2.5 2.5 0 0 1-2.217-3.657l3.326 3.398a2.49 2.49 0 0 1-1.109.259Zm2.5-2.5c0 .42-.103.815-.286 1.162l-3.328-3.401a2.5 2.5 0 0 1 3.614 2.239Z" clip-rule="evenodd"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.8 KiB |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" data-pointer="none" viewBox="0 0 24 24" id="svgcontent" overflow="visible" width="24" height="24" x="597" y="286"><g class="layer" style="pointer-events:all"><title style="pointer-events:inherit">Layer 1</title><path fill-rule="evenodd" d="M11.99,4.83C11.52,4.83 11.01,4.83 10.47,4.84L8.76,2.27A1.01,1.01 0 0 0 7.09,3.39L8.08,4.89C7.4,4.91 6.68,4.93 5.92,4.96A4.01,4.01 0 0 0 2.09,8.4C1.93,9.55 1.85,10.94 1.85,12.58C1.85,14.55 1.96,16.25 2.2,17.7A4.01,4.01 0 0 0 5.96,21.06L6.86,21.11C8.07,21.17 8.67,21.2 10.47,21.2A0.99,0.99 0 0 0 10.47,19.23C8.71,19.23 8.13,19.2 6.97,19.14L6.06,19.09A2.04,2.04 0 0 1 4.15,17.38C3.93,16.06 3.82,14.46 3.82,12.58C3.82,11.02 3.9,9.72 4.05,8.68C4.19,7.7 5.01,6.97 5.99,6.93C8.43,6.85 10.46,6.8 12.05,6.8C13.65,6.8 15.67,6.85 18.12,6.93C19.08,6.97 19.83,7.74 19.97,8.75C20.05,9.27 20.09,10.71 20.11,11.81L20.11,11.81C20.12,12.16 20.13,12.46 20.14,12.69A0.99,0.99 0 1 0 22.11,12.63C22.1,12.4 22.1,12.1 22.09,11.77L22.09,11.74C22.06,10.62 22.01,9.08 21.93,8.47C21.65,6.56 20.14,5.03 18.19,4.96C17.29,4.93 16.44,4.9 15.66,4.88L16.71,3.42A1.01,1.01 0 0 0 15.07,2.24L13.21,4.83C12.83,4.83 12.46,4.83 12.12,4.83L11.99,4.83zM12.51,9.6L11.19,9.6L11.19,14.23L13.41,14.23L13.41,15.08L10.79,15.08L10.79,16.16L13.41,16.16L13.42,16.84C13.78,16.86 14.13,17 14.43,17.24L14.54,17.24L14.54,16.16L17.23,16.16L17.23,15.08L14.53,15.08L14.53,14.23L16.8,14.23L16.8,9.6L15.52,9.6A8.59,8.59 0 0 0 16.27,8.18L15.18,7.8A14.23,14.23 0 0 1 14.37,9.6L12.85,9.6L13.54,9.3A8.86,8.86 0 0 0 12.73,7.89L11.68,8.24C11.98,8.64 12.26,9.09 12.51,9.6zM8.33,13.17L8.48,11.68L10.46,11.68L10.46,8.29L7.26,8.29L7.26,9.27L9.33,9.27L9.33,10.7L7.47,10.7L7.16,14.16L9.44,14.16C9.44,15.32 9.4,16.08 9.32,16.43C9.24,16.79 8.94,16.96 8.39,16.96C8.08,16.96 7.77,16.94 7.48,16.91L7.78,17.97L7.84,17.98C8.13,18 8.39,18.02 8.66,18.02C9.66,17.95 10.22,17.6 10.35,16.96C10.46,16.32 10.53,15.06 10.53,13.17L8.33,13.17zM15.79,13.28L15.79,12.42L14.53,12.42L14.53,13.28L15.79,13.28zM13.41,12.42L13.41,13.28L12.21,13.28L12.21,12.42L13.41,12.42zM12.21,11.47L13.41,11.47L13.41,10.57L12.21,10.57L12.21,11.47zM14.53,11.47L14.53,10.57L15.79,10.57L15.79,11.47L14.53,11.47z" clip-rule="evenodd" id="svg_1"></path><path fill="#000000" fill-rule="evenodd" d="M22.85,14.63A1,1 0 0 0 21.43,14.7L16.34,20.41L14.13,18.13L14.03,18.04L14.02,18.04A1,1 0 0 0 12.7,19.53L15.66,22.57L15.76,22.66L15.76,22.66C16.17,22.98 16.76,22.93 17.12,22.54L22.93,16.03L23.01,15.93L23.01,15.92A1,1 0 0 0 22.85,14.63z" clip-rule="evenodd" id="svg_2"></path></g></svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,31 +0,0 @@
|
|||||||
## 1.0.20
|
|
||||||
|
|
||||||
|
|
||||||
### 功能
|
|
||||||
+ 评论区增加表情
|
|
||||||
+ 首页渐变背景开关
|
|
||||||
+ 媒体库显示「我的订阅」
|
|
||||||
+ 评论区链接解析
|
|
||||||
+ 默认启动页设置
|
|
||||||
|
|
||||||
### 修复
|
|
||||||
+ 评论区内容重复
|
|
||||||
+ pip相关问题
|
|
||||||
+ 播放多p视频评论不刷新
|
|
||||||
+ 视频评论翻页重复
|
|
||||||
|
|
||||||
### 优化
|
|
||||||
+ url scheme优化
|
|
||||||
+ 图片预览放大
|
|
||||||
+ 图片加载速度
|
|
||||||
+ 视频评论区复制
|
|
||||||
+ 全屏显示视频标题
|
|
||||||
+ 网络异常处理
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
更多更新日志可在Github上查看
|
|
||||||
问题反馈、功能建议请查看「关于」页面。
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
## 1.0.21
|
|
||||||
|
|
||||||
### 修复
|
|
||||||
+ 推荐视频全屏问题
|
|
||||||
+ 番剧全屏播放时灰屏问题
|
|
||||||
+ 评论回调导致页面卡死问题
|
|
||||||
|
|
||||||
更多更新日志可在Github上查看
|
|
||||||
问题反馈、功能建议请查看「关于」页面。
|
|
||||||
@ -1,27 +0,0 @@
|
|||||||
## 1.0.22
|
|
||||||
|
|
||||||
### 功能
|
|
||||||
+ 字幕
|
|
||||||
+ 全屏时选集
|
|
||||||
+ 动态转发
|
|
||||||
+ 评论视频并转发
|
|
||||||
+ 收藏夹删除
|
|
||||||
+ 合集显示封面
|
|
||||||
+ 底部导航栏编辑、排序功能
|
|
||||||
+ 历史记录进度条展示
|
|
||||||
+ 直播画质切换
|
|
||||||
+ 排行榜功能
|
|
||||||
+ 视频详情页推荐视频开关
|
|
||||||
+ 显示联合投稿up
|
|
||||||
|
|
||||||
### 修复
|
|
||||||
+ 收藏夹个数错误
|
|
||||||
+ 封面保存权限问题
|
|
||||||
+ 合集最后1p未展示
|
|
||||||
+ up主页关注按钮触发灰屏
|
|
||||||
|
|
||||||
### 优化
|
|
||||||
+ 视频简介查看逻辑
|
|
||||||
|
|
||||||
更多更新日志可在Github上查看
|
|
||||||
问题反馈、功能建议请查看「关于」页面。
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
## 1.0.23
|
|
||||||
|
|
||||||
### 功能
|
|
||||||
+ 封面下载
|
|
||||||
|
|
||||||
|
|
||||||
### 修复
|
|
||||||
+ 全屏问题
|
|
||||||
+ 视频播放器灰屏问题
|
|
||||||
+ 评论区点击区域问题
|
|
||||||
|
|
||||||
|
|
||||||
更多更新日志可在Github上查看
|
|
||||||
问题反馈、功能建议请查看「关于」页面。
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
## 1.0.23
|
|
||||||
|
|
||||||
### 功能
|
|
||||||
+ 封面下载
|
|
||||||
|
|
||||||
|
|
||||||
### 修复
|
|
||||||
+ 全屏问题
|
|
||||||
+ 视频播放器灰屏问题
|
|
||||||
+ 评论区点击区域问题
|
|
||||||
+ 动态详情跳转异常问题
|
|
||||||
|
|
||||||
|
|
||||||
更多更新日志可在Github上查看
|
|
||||||
问题反馈、功能建议请查看「关于」页面。
|
|
||||||
@ -1,23 +0,0 @@
|
|||||||
## 1.0.24
|
|
||||||
|
|
||||||
### 功能
|
|
||||||
+ 私信功能
|
|
||||||
+ 回复我的、收到的赞查看
|
|
||||||
+ 新的登录方式
|
|
||||||
+ 全屏选集
|
|
||||||
+ 一键三连
|
|
||||||
+ 按分区搜索
|
|
||||||
|
|
||||||
### 优化
|
|
||||||
+ 页面跳转动画
|
|
||||||
+ 评论区跳转
|
|
||||||
|
|
||||||
### 修复
|
|
||||||
+ 音画不同步问题
|
|
||||||
+ 分集字幕未同步
|
|
||||||
+ 多语言字幕
|
|
||||||
+ 弹幕设置未生效
|
|
||||||
|
|
||||||
|
|
||||||
更多更新日志可在Github上查看
|
|
||||||
问题反馈、功能建议请查看「关于」页面。
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
## 1.0.25
|
|
||||||
|
|
||||||
### 功能
|
|
||||||
+ 直播弹幕
|
|
||||||
+ 稍后再看、收藏夹播放全部
|
|
||||||
+ 收藏夹新建、编辑
|
|
||||||
+ 评论删除
|
|
||||||
+ 评论保存为图片
|
|
||||||
+ 动态页滑动切换up
|
|
||||||
+ up投稿筛选充电视频
|
|
||||||
+ 直播tab展示关注up
|
|
||||||
+ up主页专栏展示
|
|
||||||
|
|
||||||
### 优化
|
|
||||||
+ 视频详情页一键三连
|
|
||||||
+ 动态页标识充电视频
|
|
||||||
+ 播放器亮度、音量调整百分比展示
|
|
||||||
+ 封面预览时视频标题可复制
|
|
||||||
+ 竖屏直播布局
|
|
||||||
+ 图片预览
|
|
||||||
+ 专栏渲染优化
|
|
||||||
+ 私信图片查看
|
|
||||||
|
|
||||||
### 修复
|
|
||||||
+ 收藏夹点击异常
|
|
||||||
+ 搜索up异常
|
|
||||||
+ 系统通知已读异常
|
|
||||||
+ [赞了我的]展示错误
|
|
||||||
+ 部分up合集无法打开
|
|
||||||
+ 切换合集视频投币个数未重置
|
|
||||||
+ 搜索条件筛选面板无法滚动
|
|
||||||
+ 部分机型导航条未沉浸
|
|
||||||
+ 专栏图片渲染问题
|
|
||||||
+ 专栏浏览历史记录
|
|
||||||
+ 直播间历史记录
|
|
||||||
|
|
||||||
|
|
||||||
更多更新日志可在Github上查看
|
|
||||||
问题反馈、功能建议请查看「关于」页面。
|
|
||||||
@ -21,6 +21,6 @@
|
|||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.0</string>
|
<string>1.0</string>
|
||||||
<key>MinimumOSVersion</key>
|
<key>MinimumOSVersion</key>
|
||||||
<string>12.0</string>
|
<string>11.0</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
@ -9,7 +9,7 @@ PODS:
|
|||||||
- Flutter
|
- Flutter
|
||||||
- connectivity_plus (0.0.1):
|
- connectivity_plus (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- FlutterMacOS
|
- ReachabilitySwift
|
||||||
- device_info_plus (0.0.1):
|
- device_info_plus (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- Flutter (1.0.0)
|
- Flutter (1.0.0)
|
||||||
@ -23,7 +23,7 @@ PODS:
|
|||||||
- FMDB (2.7.5):
|
- FMDB (2.7.5):
|
||||||
- FMDB/standard (= 2.7.5)
|
- FMDB/standard (= 2.7.5)
|
||||||
- FMDB/standard (2.7.5)
|
- FMDB/standard (2.7.5)
|
||||||
- gt3_flutter_plugin (0.0.9):
|
- gt3_flutter_plugin (0.0.8):
|
||||||
- Flutter
|
- Flutter
|
||||||
- GT3Captcha-iOS
|
- GT3Captcha-iOS
|
||||||
- GT3Captcha-iOS (0.15.8.3)
|
- GT3Captcha-iOS (0.15.8.3)
|
||||||
@ -38,8 +38,9 @@ PODS:
|
|||||||
- path_provider_foundation (0.0.1):
|
- path_provider_foundation (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- FlutterMacOS
|
- FlutterMacOS
|
||||||
- permission_handler_apple (9.3.0):
|
- permission_handler_apple (9.1.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
|
- ReachabilitySwift (5.0.0)
|
||||||
- saver_gallery (0.0.1):
|
- saver_gallery (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- screen_brightness_ios (0.1.0):
|
- screen_brightness_ios (0.1.0):
|
||||||
@ -70,7 +71,7 @@ DEPENDENCIES:
|
|||||||
- audio_service (from `.symlinks/plugins/audio_service/ios`)
|
- audio_service (from `.symlinks/plugins/audio_service/ios`)
|
||||||
- audio_session (from `.symlinks/plugins/audio_session/ios`)
|
- audio_session (from `.symlinks/plugins/audio_session/ios`)
|
||||||
- auto_orientation (from `.symlinks/plugins/auto_orientation/ios`)
|
- auto_orientation (from `.symlinks/plugins/auto_orientation/ios`)
|
||||||
- connectivity_plus (from `.symlinks/plugins/connectivity_plus/darwin`)
|
- connectivity_plus (from `.symlinks/plugins/connectivity_plus/ios`)
|
||||||
- device_info_plus (from `.symlinks/plugins/device_info_plus/ios`)
|
- device_info_plus (from `.symlinks/plugins/device_info_plus/ios`)
|
||||||
- Flutter (from `Flutter`)
|
- Flutter (from `Flutter`)
|
||||||
- flutter_mailer (from `.symlinks/plugins/flutter_mailer/ios`)
|
- flutter_mailer (from `.symlinks/plugins/flutter_mailer/ios`)
|
||||||
@ -99,6 +100,7 @@ SPEC REPOS:
|
|||||||
trunk:
|
trunk:
|
||||||
- FMDB
|
- FMDB
|
||||||
- GT3Captcha-iOS
|
- GT3Captcha-iOS
|
||||||
|
- ReachabilitySwift
|
||||||
- Toast
|
- Toast
|
||||||
|
|
||||||
EXTERNAL SOURCES:
|
EXTERNAL SOURCES:
|
||||||
@ -111,7 +113,7 @@ EXTERNAL SOURCES:
|
|||||||
auto_orientation:
|
auto_orientation:
|
||||||
:path: ".symlinks/plugins/auto_orientation/ios"
|
:path: ".symlinks/plugins/auto_orientation/ios"
|
||||||
connectivity_plus:
|
connectivity_plus:
|
||||||
:path: ".symlinks/plugins/connectivity_plus/darwin"
|
:path: ".symlinks/plugins/connectivity_plus/ios"
|
||||||
device_info_plus:
|
device_info_plus:
|
||||||
:path: ".symlinks/plugins/device_info_plus/ios"
|
:path: ".symlinks/plugins/device_info_plus/ios"
|
||||||
Flutter:
|
Flutter:
|
||||||
@ -164,21 +166,22 @@ SPEC CHECKSUMS:
|
|||||||
audio_service: f509d65da41b9521a61f1c404dd58651f265a567
|
audio_service: f509d65da41b9521a61f1c404dd58651f265a567
|
||||||
audio_session: 4f3e461722055d21515cf3261b64c973c062f345
|
audio_session: 4f3e461722055d21515cf3261b64c973c062f345
|
||||||
auto_orientation: 102ed811a5938d52c86520ddd7ecd3a126b5d39d
|
auto_orientation: 102ed811a5938d52c86520ddd7ecd3a126b5d39d
|
||||||
connectivity_plus: ddd7f30999e1faaef5967c23d5b6d503d10434db
|
connectivity_plus: 07c49e96d7fc92bc9920617b83238c4d178b446a
|
||||||
device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6
|
device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6
|
||||||
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
|
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
|
||||||
flutter_mailer: 2ef5a67087bc8c6c4cefd04a178bf1ae2c94cd83
|
flutter_mailer: 2ef5a67087bc8c6c4cefd04a178bf1ae2c94cd83
|
||||||
flutter_volume_controller: e4d5832f08008180f76e30faf671ffd5a425e529
|
flutter_volume_controller: e4d5832f08008180f76e30faf671ffd5a425e529
|
||||||
fluttertoast: 31b00dabfa7fb7bacd9e7dbee580d7a2ff4bf265
|
fluttertoast: 31b00dabfa7fb7bacd9e7dbee580d7a2ff4bf265
|
||||||
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
|
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
|
||||||
gt3_flutter_plugin: 5bd2c08d3c19cbb6ee3b08f4358439e54c8ab2ee
|
gt3_flutter_plugin: bfa1f26e9a09dc00401514be5ed437f964cabf23
|
||||||
GT3Captcha-iOS: 5e3b1077834d8a9d6f4d64a447a30af3e14affe6
|
GT3Captcha-iOS: 5e3b1077834d8a9d6f4d64a447a30af3e14affe6
|
||||||
media_kit_libs_ios_video: a5fe24bc7875ccd6378a0978c13185e1344651c1
|
media_kit_libs_ios_video: a5fe24bc7875ccd6378a0978c13185e1344651c1
|
||||||
media_kit_native_event_loop: e6b2ab20cf0746eb1c33be961fcf79667304fa2a
|
media_kit_native_event_loop: e6b2ab20cf0746eb1c33be961fcf79667304fa2a
|
||||||
media_kit_video: 5da63f157170e5bf303bf85453b7ef6971218a2e
|
media_kit_video: 5da63f157170e5bf303bf85453b7ef6971218a2e
|
||||||
package_info_plus: 115f4ad11e0698c8c1c5d8a689390df880f47e85
|
package_info_plus: 115f4ad11e0698c8c1c5d8a689390df880f47e85
|
||||||
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
|
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
|
||||||
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
|
permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6
|
||||||
|
ReachabilitySwift: 985039c6f7b23a1da463388634119492ff86c825
|
||||||
saver_gallery: 2b4e584106fde2407ab51560f3851564963e6b78
|
saver_gallery: 2b4e584106fde2407ab51560f3851564963e6b78
|
||||||
screen_brightness_ios: 715ca807df953bf676d339f11464e438143ee625
|
screen_brightness_ios: 715ca807df953bf676d339f11464e438143ee625
|
||||||
share_plus: c3fef564749587fc939ef86ffb283ceac0baf9f5
|
share_plus: c3fef564749587fc939ef86ffb283ceac0baf9f5
|
||||||
@ -186,11 +189,11 @@ SPEC CHECKSUMS:
|
|||||||
status_bar_control: 7c84146799e6a076315cc1550f78ef53aae3e446
|
status_bar_control: 7c84146799e6a076315cc1550f78ef53aae3e446
|
||||||
system_proxy: bec1a5c5af67dd3e3ebf43979400a8756c04cc44
|
system_proxy: bec1a5c5af67dd3e3ebf43979400a8756c04cc44
|
||||||
Toast: ec33c32b8688982cecc6348adeae667c1b9938da
|
Toast: ec33c32b8688982cecc6348adeae667c1b9938da
|
||||||
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe
|
url_launcher_ios: bf5ce03e0e2088bad9cc378ea97fa0ed5b49673b
|
||||||
volume_controller: 531ddf792994285c9b17f9d8a7e4dcdd29b3eae9
|
volume_controller: 531ddf792994285c9b17f9d8a7e4dcdd29b3eae9
|
||||||
wakelock_plus: 78ec7c5b202cab7761af8e2b2b3d0671be6c4ae1
|
wakelock_plus: 8b09852c8876491e4b6d179e17dfe2a0b5f60d47
|
||||||
webview_cookie_manager: eaf920722b493bd0f7611b5484771ca53fed03f7
|
webview_cookie_manager: eaf920722b493bd0f7611b5484771ca53fed03f7
|
||||||
webview_flutter_wkwebview: be0f0d33777f1bfd0c9fdcb594786704dbf65f36
|
webview_flutter_wkwebview: 2e2d318f21a5e036e2c3f26171342e95908bd60a
|
||||||
|
|
||||||
PODFILE CHECKSUM: 637cd290bed23275b5f5ffcc7eb1e73d0a5fb2be
|
PODFILE CHECKSUM: 637cd290bed23275b5f5ffcc7eb1e73d0a5fb2be
|
||||||
|
|
||||||
|
|||||||
@ -156,7 +156,7 @@
|
|||||||
97C146E61CF9000F007C117D /* Project object */ = {
|
97C146E61CF9000F007C117D /* Project object */ = {
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
LastUpgradeCheck = 1510;
|
LastUpgradeCheck = 1430;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
97C146ED1CF9000F007C117D = {
|
97C146ED1CF9000F007C117D = {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1510"
|
LastUpgradeVersion = "1430"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
import UIKit
|
import UIKit
|
||||||
import Flutter
|
import Flutter
|
||||||
import AVFoundation
|
|
||||||
|
|
||||||
@UIApplicationMain
|
@UIApplicationMain
|
||||||
@objc class AppDelegate: FlutterAppDelegate {
|
@objc class AppDelegate: FlutterAppDelegate {
|
||||||
@ -9,14 +8,6 @@ import AVFoundation
|
|||||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
||||||
) -> Bool {
|
) -> Bool {
|
||||||
GeneratedPluginRegistrant.register(with: self)
|
GeneratedPluginRegistrant.register(with: self)
|
||||||
|
|
||||||
// 设置音频会话类别,确保在静音模式下播放音频
|
|
||||||
do {
|
|
||||||
try AVAudioSession.sharedInstance().setCategory(.playback, options: [.duckOthers])
|
|
||||||
} catch {
|
|
||||||
print("Failed to set audio session category: \(error)")
|
|
||||||
}
|
|
||||||
|
|
||||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -49,8 +49,6 @@
|
|||||||
<true/>
|
<true/>
|
||||||
<key>NSPhotoLibraryAddUsageDescription</key>
|
<key>NSPhotoLibraryAddUsageDescription</key>
|
||||||
<string>请允许APP保存图片到相册</string>
|
<string>请允许APP保存图片到相册</string>
|
||||||
<key>NSPhotoLibraryUsageDescription</key>
|
|
||||||
<string>请允许APP保存图片到相册</string>
|
|
||||||
<key>NSCameraUsageDescription</key>
|
<key>NSCameraUsageDescription</key>
|
||||||
<string>App需要您的同意,才能访问相册</string>
|
<string>App需要您的同意,才能访问相册</string>
|
||||||
<key>NSAppleMusicUsageDescription</key>
|
<key>NSAppleMusicUsageDescription</key>
|
||||||
|
|||||||
@ -1,172 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
|
||||||
import 'package:pilipala/common/widgets/network_img_layer.dart';
|
|
||||||
import 'package:scrollable_positioned_list/scrollable_positioned_list.dart';
|
|
||||||
import '../models/common/video_episode_type.dart';
|
|
||||||
|
|
||||||
class EpisodeBottomSheet {
|
|
||||||
final List<dynamic> episodes;
|
|
||||||
final int currentCid;
|
|
||||||
final dynamic dataType;
|
|
||||||
final BuildContext context;
|
|
||||||
final Function changeFucCall;
|
|
||||||
final int? cid;
|
|
||||||
final double? sheetHeight;
|
|
||||||
bool isFullScreen = false;
|
|
||||||
|
|
||||||
EpisodeBottomSheet({
|
|
||||||
required this.episodes,
|
|
||||||
required this.currentCid,
|
|
||||||
required this.dataType,
|
|
||||||
required this.context,
|
|
||||||
required this.changeFucCall,
|
|
||||||
this.cid,
|
|
||||||
this.sheetHeight,
|
|
||||||
this.isFullScreen = false,
|
|
||||||
});
|
|
||||||
|
|
||||||
Widget buildEpisodeListItem(
|
|
||||||
dynamic episode,
|
|
||||||
int index,
|
|
||||||
bool isCurrentIndex,
|
|
||||||
) {
|
|
||||||
Color primary = Theme.of(context).colorScheme.primary;
|
|
||||||
Color onSurface = Theme.of(context).colorScheme.onSurface;
|
|
||||||
|
|
||||||
String title = '';
|
|
||||||
switch (dataType) {
|
|
||||||
case VideoEpidoesType.videoEpisode:
|
|
||||||
title = episode.title;
|
|
||||||
break;
|
|
||||||
case VideoEpidoesType.videoPart:
|
|
||||||
title = episode.pagePart;
|
|
||||||
break;
|
|
||||||
case VideoEpidoesType.bangumiEpisode:
|
|
||||||
title = '第${episode.title}话 ${episode.longTitle!}';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return isFullScreen || episode?.cover == null || episode?.cover == ''
|
|
||||||
? ListTile(
|
|
||||||
onTap: () {
|
|
||||||
SmartDialog.showToast('切换至「$title」');
|
|
||||||
changeFucCall.call(episode, index);
|
|
||||||
},
|
|
||||||
dense: false,
|
|
||||||
leading: isCurrentIndex
|
|
||||||
? Image.asset(
|
|
||||||
'assets/images/live.gif',
|
|
||||||
color: primary,
|
|
||||||
height: 12,
|
|
||||||
)
|
|
||||||
: null,
|
|
||||||
title: Text(title,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14,
|
|
||||||
color: isCurrentIndex ? primary : onSurface,
|
|
||||||
)))
|
|
||||||
: InkWell(
|
|
||||||
onTap: () {
|
|
||||||
SmartDialog.showToast('切换至「$title」');
|
|
||||||
changeFucCall.call(episode, index);
|
|
||||||
},
|
|
||||||
child: Padding(
|
|
||||||
padding:
|
|
||||||
const EdgeInsets.only(left: 14, right: 14, top: 8, bottom: 8),
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
NetworkImgLayer(
|
|
||||||
width: 130, height: 75, src: episode?.cover ?? ''),
|
|
||||||
const SizedBox(width: 10),
|
|
||||||
Expanded(
|
|
||||||
child: Text(
|
|
||||||
title,
|
|
||||||
maxLines: 2,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14,
|
|
||||||
color: isCurrentIndex ? primary : onSurface,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget buildTitle() {
|
|
||||||
return AppBar(
|
|
||||||
toolbarHeight: 45,
|
|
||||||
automaticallyImplyLeading: false,
|
|
||||||
centerTitle: false,
|
|
||||||
title: Text(
|
|
||||||
'合集(${episodes.length})',
|
|
||||||
style: Theme.of(context).textTheme.titleMedium,
|
|
||||||
),
|
|
||||||
actions: !isFullScreen
|
|
||||||
? [
|
|
||||||
IconButton(
|
|
||||||
icon: const Icon(Icons.close, size: 20),
|
|
||||||
onPressed: () => Navigator.pop(context),
|
|
||||||
),
|
|
||||||
const SizedBox(width: 14),
|
|
||||||
]
|
|
||||||
: null,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget buildShowContent(BuildContext context) {
|
|
||||||
final ItemScrollController itemScrollController = ItemScrollController();
|
|
||||||
int currentIndex = episodes.indexWhere((dynamic e) => e.cid == currentCid);
|
|
||||||
return StatefulBuilder(
|
|
||||||
builder: (BuildContext context, StateSetter setState) {
|
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
||||||
itemScrollController.jumpTo(index: currentIndex);
|
|
||||||
});
|
|
||||||
return Container(
|
|
||||||
height: sheetHeight,
|
|
||||||
color: Theme.of(context).colorScheme.surface,
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
buildTitle(),
|
|
||||||
Expanded(
|
|
||||||
child: Material(
|
|
||||||
child: PageStorage(
|
|
||||||
bucket: PageStorageBucket(),
|
|
||||||
child: ScrollablePositionedList.builder(
|
|
||||||
itemScrollController: itemScrollController,
|
|
||||||
itemCount: episodes.length + 1,
|
|
||||||
itemBuilder: (BuildContext context, int index) {
|
|
||||||
bool isLastItem = index == episodes.length;
|
|
||||||
bool isCurrentIndex = currentIndex == index;
|
|
||||||
return isLastItem
|
|
||||||
? SizedBox(
|
|
||||||
height:
|
|
||||||
MediaQuery.of(context).padding.bottom + 20,
|
|
||||||
)
|
|
||||||
: buildEpisodeListItem(
|
|
||||||
episodes[index],
|
|
||||||
index,
|
|
||||||
isCurrentIndex,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The [BuildContext] of the widget that calls the bottom sheet.
|
|
||||||
PersistentBottomSheetController show(BuildContext context) {
|
|
||||||
final PersistentBottomSheetController btmSheetCtr = showBottomSheet(
|
|
||||||
context: context,
|
|
||||||
builder: (BuildContext context) {
|
|
||||||
return buildShowContent(context);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
return btmSheetCtr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -13,8 +13,8 @@ class Skeleton extends StatelessWidget {
|
|||||||
var shimmerGradient = LinearGradient(
|
var shimmerGradient = LinearGradient(
|
||||||
colors: [
|
colors: [
|
||||||
Colors.transparent,
|
Colors.transparent,
|
||||||
Theme.of(context).colorScheme.surface.withAlpha(10),
|
Theme.of(context).colorScheme.background.withAlpha(10),
|
||||||
Theme.of(context).colorScheme.surface.withAlpha(10),
|
Theme.of(context).colorScheme.background.withAlpha(10),
|
||||||
Colors.transparent,
|
Colors.transparent,
|
||||||
],
|
],
|
||||||
stops: const [
|
stops: const [
|
||||||
|
|||||||
@ -66,7 +66,7 @@ class PBadge extends StatelessWidget {
|
|||||||
border: Border.all(color: borderColor),
|
border: Border.all(color: borderColor),
|
||||||
),
|
),
|
||||||
child: Text(
|
child: Text(
|
||||||
text ?? '',
|
text!,
|
||||||
style: TextStyle(fontSize: fs ?? fontSize, color: color),
|
style: TextStyle(fontSize: fs ?? fontSize, color: color),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@ -1,9 +1,7 @@
|
|||||||
import 'package:cached_network_image/cached_network_image.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_html/flutter_html.dart';
|
import 'package:flutter_html/flutter_html.dart';
|
||||||
import 'package:pilipala/plugin/pl_gallery/hero_dialog_route.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:pilipala/plugin/pl_gallery/interactiveviewer_gallery.dart';
|
import 'network_img_layer.dart';
|
||||||
import 'package:pilipala/utils/highlight.dart';
|
|
||||||
|
|
||||||
// ignore: must_be_immutable
|
// ignore: must_be_immutable
|
||||||
class HtmlRender extends StatelessWidget {
|
class HtmlRender extends StatelessWidget {
|
||||||
@ -24,20 +22,6 @@ class HtmlRender extends StatelessWidget {
|
|||||||
data: htmlContent,
|
data: htmlContent,
|
||||||
onLinkTap: (String? url, Map<String, String> buildContext, attributes) {},
|
onLinkTap: (String? url, Map<String, String> buildContext, attributes) {},
|
||||||
extensions: [
|
extensions: [
|
||||||
TagExtension(
|
|
||||||
tagsToExtend: <String>{'pre'},
|
|
||||||
builder: (ExtensionContext extensionContext) {
|
|
||||||
final Map<String, dynamic> attributes = extensionContext.attributes;
|
|
||||||
final String lang = attributes['data-lang'] as String;
|
|
||||||
final String code = attributes['codecontent'] as String;
|
|
||||||
List<String> selectedLanguages = [lang.split('@').first];
|
|
||||||
TextSpan? result = highlightExistingText(code, selectedLanguages);
|
|
||||||
if (result == null) {
|
|
||||||
return const Center(child: Text('代码块渲染失败'));
|
|
||||||
}
|
|
||||||
return SelectableText.rich(result);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
TagExtension(
|
TagExtension(
|
||||||
tagsToExtend: <String>{'img'},
|
tagsToExtend: <String>{'img'},
|
||||||
builder: (ExtensionContext extensionContext) {
|
builder: (ExtensionContext extensionContext) {
|
||||||
@ -60,52 +44,20 @@ class HtmlRender extends StatelessWidget {
|
|||||||
if (isMall) {
|
if (isMall) {
|
||||||
return const SizedBox();
|
return const SizedBox();
|
||||||
}
|
}
|
||||||
return InkWell(
|
// bool inTable =
|
||||||
onTap: () {
|
// extensionContext.element!.previousElementSibling == null ||
|
||||||
Navigator.of(context).push(
|
// extensionContext.element!.nextElementSibling == null;
|
||||||
HeroDialogRoute<void>(
|
// imgUrl = Utils().imageUrl(imgUrl!);
|
||||||
builder: (BuildContext context) =>
|
// return Image.network(
|
||||||
InteractiveviewerGallery(
|
// imgUrl,
|
||||||
sources: imgList ?? [imgUrl],
|
// width: isEmote ? 22 : null,
|
||||||
initIndex: imgList?.indexOf(imgUrl) ?? 0,
|
// height: isEmote ? 22 : null,
|
||||||
itemBuilder: (
|
|
||||||
BuildContext context,
|
|
||||||
int index,
|
|
||||||
bool isFocus,
|
|
||||||
bool enablePageView,
|
|
||||||
) {
|
|
||||||
return GestureDetector(
|
|
||||||
behavior: HitTestBehavior.opaque,
|
|
||||||
onTap: () {
|
|
||||||
if (enablePageView) {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
child: Center(
|
|
||||||
child: Hero(
|
|
||||||
tag: imgList?[index] ?? imgUrl,
|
|
||||||
child: CachedNetworkImage(
|
|
||||||
fadeInDuration:
|
|
||||||
const Duration(milliseconds: 0),
|
|
||||||
imageUrl: imgList?[index] ?? imgUrl,
|
|
||||||
fit: BoxFit.contain,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
onPageChanged: (int pageIndex) {},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
child: CachedNetworkImage(imageUrl: imgUrl),
|
|
||||||
);
|
|
||||||
// return NetworkImgLayer(
|
|
||||||
// width: isEmote ? 22 : Get.size.width - 24,
|
|
||||||
// height: isEmote ? 22 : 200,
|
|
||||||
// src: imgUrl,
|
|
||||||
// );
|
// );
|
||||||
|
return NetworkImgLayer(
|
||||||
|
width: isEmote ? 22 : Get.size.width - 24,
|
||||||
|
height: isEmote ? 22 : 200,
|
||||||
|
src: imgUrl,
|
||||||
|
);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return const SizedBox();
|
return const SizedBox();
|
||||||
}
|
}
|
||||||
@ -114,7 +66,7 @@ class HtmlRender extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
style: {
|
style: {
|
||||||
'html': Style(
|
'html': Style(
|
||||||
fontSize: FontSize.large,
|
fontSize: FontSize.medium,
|
||||||
lineHeight: LineHeight.percent(140),
|
lineHeight: LineHeight.percent(140),
|
||||||
),
|
),
|
||||||
'body': Style(margin: Margins.zero, padding: HtmlPaddings.zero),
|
'body': Style(margin: Margins.zero, padding: HtmlPaddings.zero),
|
||||||
@ -126,7 +78,7 @@ class HtmlRender extends StatelessWidget {
|
|||||||
margin: Margins.only(bottom: 10),
|
margin: Margins.only(bottom: 10),
|
||||||
),
|
),
|
||||||
'span': Style(
|
'span': Style(
|
||||||
fontSize: FontSize.large,
|
fontSize: FontSize.medium,
|
||||||
height: Height(1.65),
|
height: Height(1.65),
|
||||||
),
|
),
|
||||||
'div': Style(height: Height.auto()),
|
'div': Style(height: Height.auto()),
|
||||||
|
|||||||
@ -2,18 +2,12 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_svg/flutter_svg.dart';
|
import 'package:flutter_svg/flutter_svg.dart';
|
||||||
|
|
||||||
class HttpError extends StatelessWidget {
|
class HttpError extends StatelessWidget {
|
||||||
const HttpError({
|
const HttpError(
|
||||||
required this.errMsg,
|
{required this.errMsg, required this.fn, this.btnText, super.key});
|
||||||
required this.fn,
|
|
||||||
this.btnText,
|
|
||||||
this.isShowBtn = true,
|
|
||||||
super.key,
|
|
||||||
});
|
|
||||||
|
|
||||||
final String? errMsg;
|
final String? errMsg;
|
||||||
final Function()? fn;
|
final Function()? fn;
|
||||||
final String? btnText;
|
final String? btnText;
|
||||||
final bool isShowBtn;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
@ -28,29 +22,20 @@ class HttpError extends StatelessWidget {
|
|||||||
"assets/images/error.svg",
|
"assets/images/error.svg",
|
||||||
height: 200,
|
height: 200,
|
||||||
),
|
),
|
||||||
const SizedBox(height: 30),
|
const SizedBox(height: 20),
|
||||||
Text(
|
Text(
|
||||||
errMsg ?? '请求异常',
|
errMsg ?? '请求异常',
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
style: Theme.of(context).textTheme.titleSmall,
|
style: Theme.of(context).textTheme.titleSmall,
|
||||||
),
|
),
|
||||||
const SizedBox(height: 20),
|
const SizedBox(height: 30),
|
||||||
if (isShowBtn)
|
OutlinedButton.icon(
|
||||||
FilledButton.tonal(
|
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
fn!();
|
fn!();
|
||||||
},
|
},
|
||||||
style: ButtonStyle(
|
icon: const Icon(Icons.arrow_forward_outlined, size: 20),
|
||||||
backgroundColor: MaterialStateProperty.resolveWith((states) {
|
label: Text(btnText ?? '点击重试'),
|
||||||
return Theme.of(context).colorScheme.primary.withAlpha(20);
|
)
|
||||||
}),
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
btnText ?? '点击重试',
|
|
||||||
style:
|
|
||||||
TextStyle(color: Theme.of(context).colorScheme.primary),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@ -2,7 +2,6 @@ import 'package:cached_network_image/cached_network_image.dart';
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
import 'package:pilipala/utils/extension.dart';
|
import 'package:pilipala/utils/extension.dart';
|
||||||
import 'package:pilipala/utils/global_data_cache.dart';
|
|
||||||
import '../../utils/storage.dart';
|
import '../../utils/storage.dart';
|
||||||
import '../constants.dart';
|
import '../constants.dart';
|
||||||
|
|
||||||
@ -33,12 +32,8 @@ class NetworkImgLayer extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final int defaultImgQuality = GlobalDataCache().imgQuality;
|
|
||||||
if (src == '' || src == null) {
|
|
||||||
return placeholder(context);
|
|
||||||
}
|
|
||||||
final String imageUrl =
|
final String imageUrl =
|
||||||
'${src!.startsWith('//') ? 'https:${src!}' : src!}@${quality ?? defaultImgQuality}q.webp';
|
'${src!.startsWith('//') ? 'https:${src!}' : src!}@${quality ?? 100}q.webp';
|
||||||
int? memCacheWidth, memCacheHeight;
|
int? memCacheWidth, memCacheHeight;
|
||||||
double aspectRatio = (width / height).toDouble();
|
double aspectRatio = (width / height).toDouble();
|
||||||
|
|
||||||
@ -86,7 +81,7 @@ class NetworkImgLayer extends StatelessWidget {
|
|||||||
fadeOutDuration ?? const Duration(milliseconds: 120),
|
fadeOutDuration ?? const Duration(milliseconds: 120),
|
||||||
fadeInDuration:
|
fadeInDuration:
|
||||||
fadeInDuration ?? const Duration(milliseconds: 120),
|
fadeInDuration ?? const Duration(milliseconds: 120),
|
||||||
filterQuality: FilterQuality.low,
|
filterQuality: FilterQuality.high,
|
||||||
errorWidget: (BuildContext context, String url, Object error) =>
|
errorWidget: (BuildContext context, String url, Object error) =>
|
||||||
placeholder(context),
|
placeholder(context),
|
||||||
placeholder: (BuildContext context, String url) =>
|
placeholder: (BuildContext context, String url) =>
|
||||||
@ -109,9 +104,7 @@ class NetworkImgLayer extends StatelessWidget {
|
|||||||
? 0
|
? 0
|
||||||
: StyleString.imgRadius.x),
|
: StyleString.imgRadius.x),
|
||||||
),
|
),
|
||||||
child: type == 'bg'
|
child: Center(
|
||||||
? const SizedBox()
|
|
||||||
: Center(
|
|
||||||
child: Image.asset(
|
child: Image.asset(
|
||||||
type == 'avatar'
|
type == 'avatar'
|
||||||
? 'assets/images/noface.jpeg'
|
? 'assets/images/noface.jpeg'
|
||||||
|
|||||||
86
lib/common/widgets/overlay_pop.dart
Normal file
86
lib/common/widgets/overlay_pop.dart
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import '../../utils/download.dart';
|
||||||
|
import '../constants.dart';
|
||||||
|
import 'network_img_layer.dart';
|
||||||
|
|
||||||
|
class OverlayPop extends StatelessWidget {
|
||||||
|
const OverlayPop({super.key, this.videoItem, this.closeFn});
|
||||||
|
|
||||||
|
final dynamic videoItem;
|
||||||
|
final Function? closeFn;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final double imgWidth = MediaQuery.sizeOf(context).width - 8 * 2;
|
||||||
|
return Container(
|
||||||
|
margin: const EdgeInsets.symmetric(horizontal: 8),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.background,
|
||||||
|
borderRadius: BorderRadius.circular(10.0),
|
||||||
|
),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Stack(
|
||||||
|
children: [
|
||||||
|
NetworkImgLayer(
|
||||||
|
width: imgWidth,
|
||||||
|
height: imgWidth / StyleString.aspectRatio,
|
||||||
|
src: videoItem.pic! as String,
|
||||||
|
quality: 100,
|
||||||
|
),
|
||||||
|
Positioned(
|
||||||
|
right: 8,
|
||||||
|
top: 8,
|
||||||
|
child: Container(
|
||||||
|
width: 30,
|
||||||
|
height: 30,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.black.withOpacity(0.3),
|
||||||
|
borderRadius:
|
||||||
|
const BorderRadius.all(Radius.circular(20))),
|
||||||
|
child: IconButton(
|
||||||
|
style: ButtonStyle(
|
||||||
|
padding: MaterialStateProperty.all(EdgeInsets.zero),
|
||||||
|
),
|
||||||
|
onPressed: () => closeFn!(),
|
||||||
|
icon: const Icon(
|
||||||
|
Icons.close,
|
||||||
|
size: 18,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(12, 10, 8, 10),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
videoItem.title! as String,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
IconButton(
|
||||||
|
tooltip: '保存封面图',
|
||||||
|
onPressed: () async {
|
||||||
|
await DownloadUtils.downloadImg(
|
||||||
|
videoItem.pic != null
|
||||||
|
? videoItem.pic as String
|
||||||
|
: videoItem.cover as String,
|
||||||
|
);
|
||||||
|
// closeFn!();
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.download, size: 20),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
)),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
130
lib/common/widgets/pull_to_refresh_header.dart
Normal file
130
lib/common/widgets/pull_to_refresh_header.dart
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
// ignore_for_file: depend_on_referenced_packages
|
||||||
|
|
||||||
|
import 'dart:math';
|
||||||
|
import 'dart:ui' as ui show Image;
|
||||||
|
|
||||||
|
import 'package:extended_image/extended_image.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:intl/intl.dart';
|
||||||
|
import 'package:pull_to_refresh_notification/pull_to_refresh_notification.dart';
|
||||||
|
|
||||||
|
double get maxDragOffset => 100;
|
||||||
|
double hideHeight = maxDragOffset / 2.3;
|
||||||
|
double refreshHeight = maxDragOffset / 1.5;
|
||||||
|
|
||||||
|
class PullToRefreshHeader extends StatelessWidget {
|
||||||
|
const PullToRefreshHeader(
|
||||||
|
this.info,
|
||||||
|
this.lastRefreshTime, {
|
||||||
|
this.color,
|
||||||
|
super.key,
|
||||||
|
});
|
||||||
|
|
||||||
|
final PullToRefreshScrollNotificationInfo? info;
|
||||||
|
final DateTime? lastRefreshTime;
|
||||||
|
final Color? color;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final PullToRefreshScrollNotificationInfo? infos = info;
|
||||||
|
if (infos == null) {
|
||||||
|
return const SizedBox();
|
||||||
|
}
|
||||||
|
String text = '';
|
||||||
|
if (infos.mode == PullToRefreshIndicatorMode.armed) {
|
||||||
|
text = 'Release to refresh';
|
||||||
|
} else if (infos.mode == PullToRefreshIndicatorMode.refresh ||
|
||||||
|
infos.mode == PullToRefreshIndicatorMode.snap) {
|
||||||
|
text = 'Loading...';
|
||||||
|
} else if (infos.mode == PullToRefreshIndicatorMode.done) {
|
||||||
|
text = 'Refresh completed.';
|
||||||
|
} else if (infos.mode == PullToRefreshIndicatorMode.drag) {
|
||||||
|
text = 'Pull to refresh';
|
||||||
|
} else if (infos.mode == PullToRefreshIndicatorMode.canceled) {
|
||||||
|
text = 'Cancel refresh';
|
||||||
|
}
|
||||||
|
|
||||||
|
final TextStyle ts = const TextStyle(
|
||||||
|
color: Colors.grey,
|
||||||
|
).copyWith(fontSize: 14);
|
||||||
|
|
||||||
|
final double dragOffset = info?.dragOffset ?? 0.0;
|
||||||
|
|
||||||
|
final DateTime time = lastRefreshTime ?? DateTime.now();
|
||||||
|
final double top = -hideHeight + dragOffset;
|
||||||
|
return Container(
|
||||||
|
height: dragOffset,
|
||||||
|
color: color ?? Colors.transparent,
|
||||||
|
// padding: EdgeInsets.only(top: dragOffset / 3),
|
||||||
|
// padding: EdgeInsets.only(bottom: 5.0),
|
||||||
|
child: Stack(
|
||||||
|
children: <Widget>[
|
||||||
|
Positioned(
|
||||||
|
left: 0.0,
|
||||||
|
right: 0.0,
|
||||||
|
top: top,
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: <Widget>[
|
||||||
|
Expanded(
|
||||||
|
child: Container(
|
||||||
|
alignment: Alignment.centerRight,
|
||||||
|
margin: const EdgeInsets.only(right: 12.0),
|
||||||
|
child: RefreshImage(top, null),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Column(
|
||||||
|
children: <Widget>[
|
||||||
|
Text(text, style: ts),
|
||||||
|
Text(
|
||||||
|
'Last updated:${DateFormat('yyyy-MM-dd hh:mm').format(time)}',
|
||||||
|
style: ts.copyWith(fontSize: 14),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const Spacer(),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RefreshImage extends StatelessWidget {
|
||||||
|
const RefreshImage(this.top, Key? key) : super(key: key);
|
||||||
|
|
||||||
|
final double top;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
const double imageSize = 30;
|
||||||
|
return ExtendedImage.asset(
|
||||||
|
'assets/flutterCandies_grey.png',
|
||||||
|
width: imageSize,
|
||||||
|
height: imageSize,
|
||||||
|
afterPaintImage: (Canvas canvas, Rect rect, ui.Image image, Paint paint) {
|
||||||
|
final double imageHeight = image.height.toDouble();
|
||||||
|
final double imageWidth = image.width.toDouble();
|
||||||
|
final Size size = rect.size;
|
||||||
|
final double y =
|
||||||
|
(1 - min(top / (refreshHeight - hideHeight), 1)) * imageHeight;
|
||||||
|
|
||||||
|
canvas.drawImageRect(
|
||||||
|
image,
|
||||||
|
Rect.fromLTWH(0.0, y, imageWidth, imageHeight - y),
|
||||||
|
Rect.fromLTWH(rect.left, rect.top + y / imageHeight * size.height,
|
||||||
|
size.width, (imageHeight - y) / imageHeight * size.height),
|
||||||
|
Paint()
|
||||||
|
..colorFilter =
|
||||||
|
const ColorFilter.mode(Color(0xFFea5504), BlendMode.srcIn)
|
||||||
|
..isAntiAlias = false
|
||||||
|
..filterQuality = FilterQuality.low,
|
||||||
|
);
|
||||||
|
|
||||||
|
//canvas.restore();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -3,10 +3,10 @@ import 'package:pilipala/utils/utils.dart';
|
|||||||
|
|
||||||
class StatDanMu extends StatelessWidget {
|
class StatDanMu extends StatelessWidget {
|
||||||
final String? theme;
|
final String? theme;
|
||||||
final dynamic danmu;
|
final int? danmu;
|
||||||
final String? size;
|
final String? size;
|
||||||
|
|
||||||
const StatDanMu({Key? key, this.theme = 'gray', this.danmu, this.size})
|
const StatDanMu({Key? key, this.theme, this.danmu, this.size})
|
||||||
: super(key: key);
|
: super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@ -14,49 +14,24 @@ class StatDanMu extends StatelessWidget {
|
|||||||
Map<String, Color> colorObject = {
|
Map<String, Color> colorObject = {
|
||||||
'white': Colors.white,
|
'white': Colors.white,
|
||||||
'gray': Theme.of(context).colorScheme.outline,
|
'gray': Theme.of(context).colorScheme.outline,
|
||||||
'black': Theme.of(context).colorScheme.onSurface.withOpacity(0.8),
|
'black': Theme.of(context).colorScheme.onBackground.withOpacity(0.8),
|
||||||
};
|
};
|
||||||
Color color = colorObject[theme]!;
|
Color color = colorObject[theme]!;
|
||||||
return StatIconText(
|
|
||||||
icon: Icons.subtitles_outlined,
|
|
||||||
text: Utils.numFormat(danmu!),
|
|
||||||
color: color,
|
|
||||||
size: size,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class StatIconText extends StatelessWidget {
|
|
||||||
final IconData icon;
|
|
||||||
final String text;
|
|
||||||
final Color color;
|
|
||||||
final String? size;
|
|
||||||
|
|
||||||
const StatIconText({
|
|
||||||
Key? key,
|
|
||||||
required this.icon,
|
|
||||||
required this.text,
|
|
||||||
required this.color,
|
|
||||||
this.size,
|
|
||||||
}) : super(key: key);
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Row(
|
return Row(
|
||||||
children: [
|
children: [
|
||||||
Icon(
|
Icon(
|
||||||
icon,
|
Icons.subtitles_outlined,
|
||||||
size: 14,
|
size: 14,
|
||||||
color: color,
|
color: color,
|
||||||
),
|
),
|
||||||
const SizedBox(width: 2),
|
const SizedBox(width: 2),
|
||||||
Text(
|
Text(
|
||||||
text,
|
Utils.numFormat(danmu!),
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: size == 'medium' ? 12 : 11,
|
fontSize: size == 'medium' ? 12 : 11,
|
||||||
color: color,
|
color: color,
|
||||||
),
|
),
|
||||||
),
|
)
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,59 +3,30 @@ import 'package:pilipala/utils/utils.dart';
|
|||||||
|
|
||||||
class StatView extends StatelessWidget {
|
class StatView extends StatelessWidget {
|
||||||
final String? theme;
|
final String? theme;
|
||||||
final dynamic view;
|
final int? view;
|
||||||
final String? size;
|
final String? size;
|
||||||
|
|
||||||
const StatView({
|
const StatView({Key? key, this.theme, this.view, this.size})
|
||||||
Key? key,
|
: super(key: key);
|
||||||
this.theme = 'gray',
|
|
||||||
this.view,
|
|
||||||
this.size,
|
|
||||||
}) : super(key: key);
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
Map<String, Color> colorObject = {
|
Map<String, Color> colorObject = {
|
||||||
'white': Colors.white,
|
'white': Colors.white,
|
||||||
'gray': Theme.of(context).colorScheme.outline,
|
'gray': Theme.of(context).colorScheme.outline,
|
||||||
'black': Theme.of(context).colorScheme.onSurface.withOpacity(0.8),
|
'black': Theme.of(context).colorScheme.onBackground.withOpacity(0.8),
|
||||||
};
|
};
|
||||||
Color color = colorObject[theme]!;
|
Color color = colorObject[theme]!;
|
||||||
return StatIconText(
|
|
||||||
icon: Icons.play_circle_outlined,
|
|
||||||
text: Utils.numFormat(view!),
|
|
||||||
color: color,
|
|
||||||
size: size,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class StatIconText extends StatelessWidget {
|
|
||||||
final IconData icon;
|
|
||||||
final String text;
|
|
||||||
final Color color;
|
|
||||||
final String? size;
|
|
||||||
|
|
||||||
const StatIconText({
|
|
||||||
Key? key,
|
|
||||||
required this.icon,
|
|
||||||
required this.text,
|
|
||||||
required this.color,
|
|
||||||
this.size,
|
|
||||||
}) : super(key: key);
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Row(
|
return Row(
|
||||||
children: [
|
children: [
|
||||||
Icon(
|
Icon(
|
||||||
icon,
|
Icons.play_circle_outlined,
|
||||||
size: 13,
|
size: 13,
|
||||||
color: color,
|
color: color,
|
||||||
),
|
),
|
||||||
const SizedBox(width: 2),
|
const SizedBox(width: 2),
|
||||||
Text(
|
Text(
|
||||||
text,
|
Utils.numFormat(view!),
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: size == 'medium' ? 12 : 11,
|
fontSize: size == 'medium' ? 12 : 11,
|
||||||
color: color,
|
color: color,
|
||||||
|
|||||||
@ -1,11 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:pilipala/http/constants.dart';
|
|
||||||
import 'package:pilipala/utils/feed_back.dart';
|
|
||||||
import 'package:pilipala/utils/image_save.dart';
|
|
||||||
import 'package:pilipala/utils/route_push.dart';
|
|
||||||
import 'package:pilipala/utils/url_utils.dart';
|
|
||||||
import '../../http/search.dart';
|
import '../../http/search.dart';
|
||||||
import '../../http/user.dart';
|
import '../../http/user.dart';
|
||||||
import '../../http/video.dart';
|
import '../../http/video.dart';
|
||||||
@ -21,55 +16,43 @@ class VideoCardH extends StatelessWidget {
|
|||||||
const VideoCardH({
|
const VideoCardH({
|
||||||
super.key,
|
super.key,
|
||||||
required this.videoItem,
|
required this.videoItem,
|
||||||
this.onPressedFn,
|
this.longPress,
|
||||||
|
this.longPressEnd,
|
||||||
this.source = 'normal',
|
this.source = 'normal',
|
||||||
this.showOwner = true,
|
this.showOwner = true,
|
||||||
this.showView = true,
|
this.showView = true,
|
||||||
this.showDanmaku = true,
|
this.showDanmaku = true,
|
||||||
this.showPubdate = false,
|
this.showPubdate = false,
|
||||||
this.showCharge = false,
|
|
||||||
});
|
});
|
||||||
// ignore: prefer_typing_uninitialized_variables
|
// ignore: prefer_typing_uninitialized_variables
|
||||||
final videoItem;
|
final videoItem;
|
||||||
final Function()? onPressedFn;
|
final Function()? longPress;
|
||||||
// normal 推荐, later 稍后再看, search 搜索
|
final Function()? longPressEnd;
|
||||||
final String source;
|
final String source;
|
||||||
final bool showOwner;
|
final bool showOwner;
|
||||||
final bool showView;
|
final bool showView;
|
||||||
final bool showDanmaku;
|
final bool showDanmaku;
|
||||||
final bool showPubdate;
|
final bool showPubdate;
|
||||||
final bool showCharge;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final int aid = videoItem.aid;
|
final int aid = videoItem.aid;
|
||||||
final String bvid = videoItem.bvid;
|
final String bvid = videoItem.bvid;
|
||||||
String type = 'video';
|
|
||||||
try {
|
|
||||||
type = videoItem.type;
|
|
||||||
} catch (_) {}
|
|
||||||
final String heroTag = Utils.makeHeroTag(aid);
|
final String heroTag = Utils.makeHeroTag(aid);
|
||||||
return InkWell(
|
return GestureDetector(
|
||||||
|
onLongPress: () {
|
||||||
|
if (longPress != null) {
|
||||||
|
longPress!();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// onLongPressEnd: (details) {
|
||||||
|
// if (longPressEnd != null) {
|
||||||
|
// longPressEnd!();
|
||||||
|
// }
|
||||||
|
// },
|
||||||
|
child: InkWell(
|
||||||
onTap: () async {
|
onTap: () async {
|
||||||
try {
|
try {
|
||||||
if (type == 'ketang') {
|
|
||||||
SmartDialog.showToast('课堂视频暂不支持播放');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (showCharge && videoItem?.typeid == 33) {
|
|
||||||
final String redirectUrl = await UrlUtils.parseRedirectUrl(
|
|
||||||
'${HttpString.baseUrl}/video/$bvid/');
|
|
||||||
final String lastPathSegment = redirectUrl.split('/').last;
|
|
||||||
if (lastPathSegment.contains('ss')) {
|
|
||||||
RoutePush.bangumiPush(
|
|
||||||
Utils.matchNum(lastPathSegment).first, null);
|
|
||||||
}
|
|
||||||
if (lastPathSegment.contains('ep')) {
|
|
||||||
RoutePush.bangumiPush(
|
|
||||||
null, Utils.matchNum(lastPathSegment).first);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
final int cid =
|
final int cid =
|
||||||
videoItem.cid ?? await SearchHttp.ab2c(aid: aid, bvid: bvid);
|
videoItem.cid ?? await SearchHttp.ab2c(aid: aid, bvid: bvid);
|
||||||
Get.toNamed('/video?bvid=$bvid&cid=$cid',
|
Get.toNamed('/video?bvid=$bvid&cid=$cid',
|
||||||
@ -78,11 +61,6 @@ class VideoCardH extends StatelessWidget {
|
|||||||
SmartDialog.showToast(err.toString());
|
SmartDialog.showToast(err.toString());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLongPress: () => imageSaveDialog(
|
|
||||||
context,
|
|
||||||
videoItem,
|
|
||||||
SmartDialog.dismiss,
|
|
||||||
),
|
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.fromLTRB(
|
padding: const EdgeInsets.fromLTRB(
|
||||||
StyleString.safeSpace, 5, StyleString.safeSpace, 5),
|
StyleString.safeSpace, 5, StyleString.safeSpace, 5),
|
||||||
@ -117,31 +95,16 @@ class VideoCardH extends StatelessWidget {
|
|||||||
height: maxHeight,
|
height: maxHeight,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (videoItem.duration != 0)
|
|
||||||
PBadge(
|
PBadge(
|
||||||
text: Utils.timeFormat(videoItem.duration!),
|
text: Utils.timeFormat(videoItem.duration!),
|
||||||
right: 6.0,
|
right: 6.0,
|
||||||
bottom: 6.0,
|
bottom: 6.0,
|
||||||
type: 'gray',
|
type: 'gray',
|
||||||
),
|
),
|
||||||
if (type != 'video')
|
|
||||||
PBadge(
|
|
||||||
text: type,
|
|
||||||
left: 6.0,
|
|
||||||
bottom: 6.0,
|
|
||||||
type: 'primary',
|
|
||||||
),
|
|
||||||
// if (videoItem.rcmdReason != null &&
|
// if (videoItem.rcmdReason != null &&
|
||||||
// videoItem.rcmdReason.content != '')
|
// videoItem.rcmdReason.content != '')
|
||||||
// pBadge(videoItem.rcmdReason.content, context,
|
// pBadge(videoItem.rcmdReason.content, context,
|
||||||
// 6.0, 6.0, null, null),
|
// 6.0, 6.0, null, null),
|
||||||
if (showCharge && videoItem?.isChargingSrc)
|
|
||||||
const PBadge(
|
|
||||||
text: '充电专属',
|
|
||||||
right: 6.0,
|
|
||||||
top: 6.0,
|
|
||||||
type: 'primary',
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
@ -154,7 +117,6 @@ class VideoCardH extends StatelessWidget {
|
|||||||
showView: showView,
|
showView: showView,
|
||||||
showDanmaku: showDanmaku,
|
showDanmaku: showDanmaku,
|
||||||
showPubdate: showPubdate,
|
showPubdate: showPubdate,
|
||||||
onPressedFn: onPressedFn,
|
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@ -162,6 +124,7 @@ class VideoCardH extends StatelessWidget {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -174,7 +137,6 @@ class VideoContent extends StatelessWidget {
|
|||||||
final bool showView;
|
final bool showView;
|
||||||
final bool showDanmaku;
|
final bool showDanmaku;
|
||||||
final bool showPubdate;
|
final bool showPubdate;
|
||||||
final Function()? onPressedFn;
|
|
||||||
|
|
||||||
const VideoContent({
|
const VideoContent({
|
||||||
super.key,
|
super.key,
|
||||||
@ -184,7 +146,6 @@ class VideoContent extends StatelessWidget {
|
|||||||
this.showView = true,
|
this.showView = true,
|
||||||
this.showDanmaku = true,
|
this.showDanmaku = true,
|
||||||
this.showPubdate = false,
|
this.showPubdate = false,
|
||||||
this.onPressedFn,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@ -195,7 +156,7 @@ class VideoContent extends StatelessWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
if (source == 'normal' || source == 'later') ...[
|
if (videoItem.title is String) ...[
|
||||||
Text(
|
Text(
|
||||||
videoItem.title as String,
|
videoItem.title as String,
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
@ -210,7 +171,7 @@ class VideoContent extends StatelessWidget {
|
|||||||
maxLines: 2,
|
maxLines: 2,
|
||||||
text: TextSpan(
|
text: TextSpan(
|
||||||
children: [
|
children: [
|
||||||
for (final i in videoItem.titleList) ...[
|
for (final i in videoItem.title) ...[
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: i['text'] as String,
|
text: i['text'] as String,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
@ -266,91 +227,93 @@ class VideoContent extends StatelessWidget {
|
|||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
if (showView) ...[
|
if (showView) ...[
|
||||||
StatView(view: videoItem.stat.view as int),
|
StatView(
|
||||||
|
theme: 'gray',
|
||||||
|
view: videoItem.stat.view as int,
|
||||||
|
),
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
],
|
],
|
||||||
if (showDanmaku)
|
if (showDanmaku)
|
||||||
StatDanMu(danmu: videoItem.stat.danmaku as int),
|
StatDanMu(
|
||||||
|
theme: 'gray',
|
||||||
|
danmu: videoItem.stat.danmaku as int,
|
||||||
|
),
|
||||||
|
|
||||||
const Spacer(),
|
const Spacer(),
|
||||||
|
// SizedBox(
|
||||||
|
// width: 20,
|
||||||
|
// height: 20,
|
||||||
|
// child: IconButton(
|
||||||
|
// tooltip: '稍后再看',
|
||||||
|
// style: ButtonStyle(
|
||||||
|
// padding: MaterialStateProperty.all(EdgeInsets.zero),
|
||||||
|
// ),
|
||||||
|
// onPressed: () async {
|
||||||
|
// var res =
|
||||||
|
// await UserHttp.toViewLater(bvid: videoItem.bvid);
|
||||||
|
// SmartDialog.showToast(res['msg']);
|
||||||
|
// },
|
||||||
|
// icon: Icon(
|
||||||
|
// Icons.more_vert_outlined,
|
||||||
|
// color: Theme.of(context).colorScheme.outline,
|
||||||
|
// size: 14,
|
||||||
|
// ),
|
||||||
|
// ),
|
||||||
|
// ),
|
||||||
if (source == 'normal')
|
if (source == 'normal')
|
||||||
SizedBox(
|
SizedBox(
|
||||||
width: 24,
|
width: 24,
|
||||||
height: 24,
|
height: 24,
|
||||||
child: IconButton(
|
child: PopupMenuButton<String>(
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
onPressed: () {
|
|
||||||
feedBack();
|
|
||||||
showModalBottomSheet(
|
|
||||||
context: context,
|
|
||||||
useRootNavigator: true,
|
|
||||||
isScrollControlled: true,
|
|
||||||
builder: (context) {
|
|
||||||
return MorePanel(videoItem: videoItem);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
icon: Icon(
|
icon: Icon(
|
||||||
Icons.more_vert_outlined,
|
Icons.more_vert_outlined,
|
||||||
color: Theme.of(context).colorScheme.outline,
|
color: Theme.of(context).colorScheme.outline,
|
||||||
size: 14,
|
size: 14,
|
||||||
),
|
),
|
||||||
),
|
position: PopupMenuPosition.under,
|
||||||
),
|
// constraints: const BoxConstraints(maxHeight: 35),
|
||||||
if (source == 'later') ...[
|
onSelected: (String type) {},
|
||||||
IconButton(
|
itemBuilder: (BuildContext context) =>
|
||||||
style: ButtonStyle(
|
<PopupMenuEntry<String>>[
|
||||||
padding: MaterialStateProperty.all(EdgeInsets.zero),
|
PopupMenuItem<String>(
|
||||||
),
|
onTap: () async {
|
||||||
onPressed: () => onPressedFn?.call(),
|
var res = await UserHttp.toViewLater(
|
||||||
icon: Icon(
|
bvid: videoItem.bvid as String);
|
||||||
Icons.clear_outlined,
|
|
||||||
color: Theme.of(context).colorScheme.outline,
|
|
||||||
size: 18,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class MorePanel extends StatelessWidget {
|
|
||||||
final dynamic videoItem;
|
|
||||||
const MorePanel({super.key, required this.videoItem});
|
|
||||||
|
|
||||||
Future<dynamic> menuActionHandler(String type) async {
|
|
||||||
switch (type) {
|
|
||||||
case 'block':
|
|
||||||
blockUser();
|
|
||||||
break;
|
|
||||||
case 'watchLater':
|
|
||||||
var res = await UserHttp.toViewLater(bvid: videoItem.bvid as String);
|
|
||||||
SmartDialog.showToast(res['msg']);
|
SmartDialog.showToast(res['msg']);
|
||||||
Get.back();
|
},
|
||||||
break;
|
value: 'pause',
|
||||||
default:
|
height: 40,
|
||||||
}
|
child: const Row(
|
||||||
}
|
children: [
|
||||||
|
Icon(Icons.watch_later_outlined, size: 16),
|
||||||
void blockUser() async {
|
SizedBox(width: 6),
|
||||||
|
Text('稍后再看', style: TextStyle(fontSize: 13))
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const PopupMenuDivider(),
|
||||||
|
PopupMenuItem<String>(
|
||||||
|
onTap: () async {
|
||||||
SmartDialog.show(
|
SmartDialog.show(
|
||||||
useSystem: true,
|
useSystem: true,
|
||||||
animationType: SmartAnimationType.centerFade_otherSlide,
|
animationType:
|
||||||
|
SmartAnimationType.centerFade_otherSlide,
|
||||||
builder: (BuildContext context) {
|
builder: (BuildContext context) {
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
title: const Text('提示'),
|
title: const Text('提示'),
|
||||||
content: Text('确定拉黑:${videoItem.owner.name}(${videoItem.owner.mid})?'
|
content: Text(
|
||||||
|
'确定拉黑:${videoItem.owner.name}(${videoItem.owner.mid})?'
|
||||||
'\n\n注:被拉黑的Up可以在隐私设置-黑名单管理中解除'),
|
'\n\n注:被拉黑的Up可以在隐私设置-黑名单管理中解除'),
|
||||||
actions: [
|
actions: [
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () => SmartDialog.dismiss(),
|
onPressed: () => SmartDialog.dismiss(),
|
||||||
child: Text(
|
child: Text(
|
||||||
'点错了',
|
'点错了',
|
||||||
style: TextStyle(color: Theme.of(context).colorScheme.outline),
|
style: TextStyle(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.outline),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
TextButton(
|
TextButton(
|
||||||
@ -361,7 +324,8 @@ class MorePanel extends StatelessWidget {
|
|||||||
reSrc: 11,
|
reSrc: 11,
|
||||||
);
|
);
|
||||||
SmartDialog.dismiss();
|
SmartDialog.dismiss();
|
||||||
SmartDialog.showToast(res['msg'] ?? '成功');
|
SmartDialog.showToast(
|
||||||
|
res['msg'] ?? '成功');
|
||||||
},
|
},
|
||||||
child: const Text('确认'),
|
child: const Text('确认'),
|
||||||
)
|
)
|
||||||
@ -369,58 +333,26 @@ class MorePanel extends StatelessWidget {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
|
value: 'pause',
|
||||||
@override
|
height: 40,
|
||||||
Widget build(BuildContext context) {
|
child: Row(
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(bottom: MediaQuery.of(context).padding.bottom),
|
|
||||||
child: Column(
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
children: [
|
children: [
|
||||||
InkWell(
|
const Icon(Icons.block, size: 16),
|
||||||
onTap: () => Get.back(),
|
const SizedBox(width: 6),
|
||||||
child: Container(
|
Text('拉黑:${videoItem.owner.name}',
|
||||||
height: 35,
|
style: const TextStyle(fontSize: 13))
|
||||||
padding: const EdgeInsets.only(bottom: 2),
|
|
||||||
child: Center(
|
|
||||||
child: Container(
|
|
||||||
width: 32,
|
|
||||||
height: 3,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Theme.of(context).colorScheme.outline,
|
|
||||||
borderRadius: const BorderRadius.all(Radius.circular(3))),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
onTap: () async => await menuActionHandler('block'),
|
|
||||||
minLeadingWidth: 0,
|
|
||||||
leading: const Icon(Icons.block, size: 19),
|
|
||||||
title: Text(
|
|
||||||
'拉黑up主 「${videoItem.owner.name}」',
|
|
||||||
style: Theme.of(context).textTheme.titleSmall,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
onTap: () async => await menuActionHandler('watchLater'),
|
|
||||||
minLeadingWidth: 0,
|
|
||||||
leading: const Icon(Icons.watch_later_outlined, size: 19),
|
|
||||||
title:
|
|
||||||
Text('添加至稍后再看', style: Theme.of(context).textTheme.titleSmall),
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
onTap: () =>
|
|
||||||
imageSaveDialog(context, videoItem, SmartDialog.dismiss),
|
|
||||||
minLeadingWidth: 0,
|
|
||||||
leading: const Icon(Icons.photo_outlined, size: 19),
|
|
||||||
title:
|
|
||||||
Text('查看视频封面', style: Theme.of(context).textTheme.titleSmall),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 20),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,15 +1,11 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:pilipala/utils/feed_back.dart';
|
|
||||||
import 'package:pilipala/utils/image_save.dart';
|
|
||||||
import 'package:pilipala/utils/route_push.dart';
|
|
||||||
import '../../models/model_rec_video_item.dart';
|
|
||||||
import 'stat/danmu.dart';
|
|
||||||
import 'stat/view.dart';
|
|
||||||
import '../../http/dynamics.dart';
|
import '../../http/dynamics.dart';
|
||||||
|
import '../../http/search.dart';
|
||||||
import '../../http/user.dart';
|
import '../../http/user.dart';
|
||||||
import '../../http/video.dart';
|
import '../../http/video.dart';
|
||||||
|
import '../../models/common/search_type.dart';
|
||||||
import '../../utils/id_utils.dart';
|
import '../../utils/id_utils.dart';
|
||||||
import '../../utils/utils.dart';
|
import '../../utils/utils.dart';
|
||||||
import '../constants.dart';
|
import '../constants.dart';
|
||||||
@ -20,13 +16,15 @@ import 'network_img_layer.dart';
|
|||||||
class VideoCardV extends StatelessWidget {
|
class VideoCardV extends StatelessWidget {
|
||||||
final dynamic videoItem;
|
final dynamic videoItem;
|
||||||
final int crossAxisCount;
|
final int crossAxisCount;
|
||||||
final Function? blockUserCb;
|
final Function()? longPress;
|
||||||
|
final Function()? longPressEnd;
|
||||||
|
|
||||||
const VideoCardV({
|
const VideoCardV({
|
||||||
Key? key,
|
Key? key,
|
||||||
required this.videoItem,
|
required this.videoItem,
|
||||||
required this.crossAxisCount,
|
required this.crossAxisCount,
|
||||||
this.blockUserCb,
|
this.longPress,
|
||||||
|
this.longPressEnd,
|
||||||
}) : super(key: key);
|
}) : super(key: key);
|
||||||
|
|
||||||
bool isStringNumeric(String str) {
|
bool isStringNumeric(String str) {
|
||||||
@ -43,11 +41,23 @@ class VideoCardV extends StatelessWidget {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
int epId = videoItem.param;
|
int epId = videoItem.param;
|
||||||
RoutePush.bangumiPush(
|
SmartDialog.showLoading(msg: '资源获取中');
|
||||||
null,
|
var result = await SearchHttp.bangumiInfo(seasonId: null, epId: epId);
|
||||||
epId,
|
if (result['status']) {
|
||||||
heroTag: heroTag,
|
var bangumiDetail = result['data'];
|
||||||
|
int cid = bangumiDetail.episodes!.first.cid;
|
||||||
|
String bvid = IdUtils.av2bv(bangumiDetail.episodes!.first.aid);
|
||||||
|
SmartDialog.dismiss().then(
|
||||||
|
(value) => Get.toNamed(
|
||||||
|
'/video?bvid=$bvid&cid=$cid&epId=$epId',
|
||||||
|
arguments: {
|
||||||
|
'pic': videoItem.pic,
|
||||||
|
'heroTag': heroTag,
|
||||||
|
'videoType': SearchType.media_bangumi,
|
||||||
|
},
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'av':
|
case 'av':
|
||||||
String bvid = videoItem.bvid ?? IdUtils.av2bv(videoItem.aid);
|
String bvid = videoItem.bvid ?? IdUtils.av2bv(videoItem.aid);
|
||||||
@ -60,13 +70,17 @@ class VideoCardV extends StatelessWidget {
|
|||||||
// 动态
|
// 动态
|
||||||
case 'picture':
|
case 'picture':
|
||||||
try {
|
try {
|
||||||
|
String dynamicType = 'picture';
|
||||||
String uri = videoItem.uri;
|
String uri = videoItem.uri;
|
||||||
|
String id = '';
|
||||||
if (videoItem.uri.startsWith('bilibili://article/')) {
|
if (videoItem.uri.startsWith('bilibili://article/')) {
|
||||||
// https://www.bilibili.com/read/cv27063554
|
// https://www.bilibili.com/read/cv27063554
|
||||||
|
dynamicType = 'read';
|
||||||
RegExp regex = RegExp(r'\d+');
|
RegExp regex = RegExp(r'\d+');
|
||||||
Match match = regex.firstMatch(videoItem.uri)!;
|
Match match = regex.firstMatch(videoItem.uri)!;
|
||||||
String matchedNumber = match.group(0)!;
|
String matchedNumber = match.group(0)!;
|
||||||
videoItem.param = int.parse(matchedNumber);
|
videoItem.param = int.parse(matchedNumber);
|
||||||
|
id = 'cv${videoItem.param}';
|
||||||
}
|
}
|
||||||
if (uri.startsWith('http')) {
|
if (uri.startsWith('http')) {
|
||||||
String path = Uri.parse(uri).path;
|
String path = Uri.parse(uri).path;
|
||||||
@ -84,10 +98,11 @@ class VideoCardV extends StatelessWidget {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Get.toNamed('/read', parameters: {
|
Get.toNamed('/htmlRender', parameters: {
|
||||||
|
'url': uri,
|
||||||
'title': videoItem.title,
|
'title': videoItem.title,
|
||||||
'id': videoItem.param,
|
'id': id,
|
||||||
'articleType': 'read'
|
'dynamicType': dynamicType
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
SmartDialog.showToast(err.toString());
|
SmartDialog.showToast(err.toString());
|
||||||
@ -109,14 +124,23 @@ class VideoCardV extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
String heroTag = Utils.makeHeroTag(videoItem.id);
|
String heroTag = Utils.makeHeroTag(videoItem.id);
|
||||||
return InkWell(
|
return Card(
|
||||||
|
elevation: 0,
|
||||||
|
clipBehavior: Clip.hardEdge,
|
||||||
|
margin: EdgeInsets.zero,
|
||||||
|
child: GestureDetector(
|
||||||
|
onLongPress: () {
|
||||||
|
if (longPress != null) {
|
||||||
|
longPress!();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// onLongPressEnd: (details) {
|
||||||
|
// if (longPressEnd != null) {
|
||||||
|
// longPressEnd!();
|
||||||
|
// }
|
||||||
|
// },
|
||||||
|
child: InkWell(
|
||||||
onTap: () async => onPushDetail(heroTag),
|
onTap: () async => onPushDetail(heroTag),
|
||||||
onLongPress: () => imageSaveDialog(
|
|
||||||
context,
|
|
||||||
videoItem,
|
|
||||||
SmartDialog.dismiss,
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(16),
|
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
AspectRatio(
|
AspectRatio(
|
||||||
@ -134,12 +158,12 @@ class VideoCardV extends StatelessWidget {
|
|||||||
height: maxHeight,
|
height: maxHeight,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (videoItem.duration > 0)
|
if (videoItem.duration != null)
|
||||||
if (crossAxisCount == 1) ...[
|
if (crossAxisCount == 1) ...[
|
||||||
PBadge(
|
PBadge(
|
||||||
bottom: 10,
|
bottom: 10,
|
||||||
right: 10,
|
right: 10,
|
||||||
text: Utils.timeFormat(videoItem.duration),
|
text: videoItem.duration,
|
||||||
)
|
)
|
||||||
] else ...[
|
] else ...[
|
||||||
PBadge(
|
PBadge(
|
||||||
@ -147,20 +171,18 @@ class VideoCardV extends StatelessWidget {
|
|||||||
right: 7,
|
right: 7,
|
||||||
size: 'small',
|
size: 'small',
|
||||||
type: 'gray',
|
type: 'gray',
|
||||||
text: Utils.timeFormat(videoItem.duration),
|
text: videoItem.duration,
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
VideoContent(
|
VideoContent(videoItem: videoItem, crossAxisCount: crossAxisCount)
|
||||||
videoItem: videoItem,
|
|
||||||
crossAxisCount: crossAxisCount,
|
|
||||||
blockUserCb: blockUserCb,
|
|
||||||
)
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -168,180 +190,220 @@ class VideoCardV extends StatelessWidget {
|
|||||||
class VideoContent extends StatelessWidget {
|
class VideoContent extends StatelessWidget {
|
||||||
final dynamic videoItem;
|
final dynamic videoItem;
|
||||||
final int crossAxisCount;
|
final int crossAxisCount;
|
||||||
final Function? blockUserCb;
|
const VideoContent(
|
||||||
|
{Key? key, required this.videoItem, required this.crossAxisCount})
|
||||||
const VideoContent({
|
: super(key: key);
|
||||||
Key? key,
|
|
||||||
required this.videoItem,
|
|
||||||
required this.crossAxisCount,
|
|
||||||
this.blockUserCb,
|
|
||||||
}) : super(key: key);
|
|
||||||
|
|
||||||
Widget _buildBadge(String text, String type, [double fs = 12]) {
|
|
||||||
return PBadge(
|
|
||||||
text: text,
|
|
||||||
stack: 'normal',
|
|
||||||
size: 'small',
|
|
||||||
type: type,
|
|
||||||
fs: fs,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Padding(
|
return Expanded(
|
||||||
|
flex: crossAxisCount == 1 ? 0 : 1,
|
||||||
|
child: Padding(
|
||||||
padding: crossAxisCount == 1
|
padding: crossAxisCount == 1
|
||||||
? const EdgeInsets.fromLTRB(9, 9, 9, 4)
|
? const EdgeInsets.fromLTRB(9, 9, 9, 4)
|
||||||
: const EdgeInsets.fromLTRB(5, 8, 5, 4),
|
: const EdgeInsets.fromLTRB(5, 8, 5, 4),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
videoItem.title,
|
videoItem.title,
|
||||||
maxLines: 2,
|
maxLines: 2,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
if (videoItem.goto == 'av' && crossAxisCount == 1) ...[
|
||||||
|
const SizedBox(width: 10),
|
||||||
|
VideoPopupMenu(
|
||||||
|
size: 32,
|
||||||
|
iconSize: 18,
|
||||||
|
videoItem: videoItem,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
if (crossAxisCount > 1) ...[
|
if (crossAxisCount > 1) ...[
|
||||||
const SizedBox(height: 2),
|
const SizedBox(height: 2),
|
||||||
VideoStat(videoItem: videoItem, crossAxisCount: crossAxisCount),
|
VideoStat(
|
||||||
|
videoItem: videoItem,
|
||||||
|
),
|
||||||
],
|
],
|
||||||
if (crossAxisCount == 1) const SizedBox(height: 4),
|
if (crossAxisCount == 1) const SizedBox(height: 4),
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
if (videoItem.goto == 'bangumi')
|
if (videoItem.goto == 'bangumi') ...[
|
||||||
_buildBadge(videoItem.bangumiBadge, 'line', 9),
|
PBadge(
|
||||||
if (videoItem.rcmdReason != null)
|
text: videoItem.bangumiBadge,
|
||||||
_buildBadge(videoItem.rcmdReason, 'color'),
|
stack: 'normal',
|
||||||
if (videoItem.goto == 'picture') _buildBadge('动态', 'line', 9),
|
size: 'small',
|
||||||
if (videoItem.isFollowed == 1) _buildBadge('已关注', 'color'),
|
type: 'line',
|
||||||
|
fs: 9,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
if (videoItem.rcmdReason != null &&
|
||||||
|
videoItem.rcmdReason.content != '') ...[
|
||||||
|
PBadge(
|
||||||
|
text: videoItem.rcmdReason.content,
|
||||||
|
stack: 'normal',
|
||||||
|
size: 'small',
|
||||||
|
type: 'color',
|
||||||
|
)
|
||||||
|
],
|
||||||
|
if (videoItem.goto == 'picture') ...[
|
||||||
|
const PBadge(
|
||||||
|
text: '动态',
|
||||||
|
stack: 'normal',
|
||||||
|
size: 'small',
|
||||||
|
type: 'line',
|
||||||
|
fs: 9,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
if (videoItem.isFollowed == 1) ...[
|
||||||
|
const PBadge(
|
||||||
|
text: '已关注',
|
||||||
|
stack: 'normal',
|
||||||
|
size: 'small',
|
||||||
|
type: 'color',
|
||||||
|
)
|
||||||
|
],
|
||||||
Expanded(
|
Expanded(
|
||||||
flex: crossAxisCount == 1 ? 0 : 1,
|
flex: crossAxisCount == 1 ? 0 : 1,
|
||||||
child: Text(
|
child: Text(
|
||||||
videoItem.owner.name,
|
videoItem.owner.name,
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: Theme.of(context).textTheme.labelMedium!.fontSize,
|
fontSize:
|
||||||
|
Theme.of(context).textTheme.labelMedium!.fontSize,
|
||||||
color: Theme.of(context).colorScheme.outline,
|
color: Theme.of(context).colorScheme.outline,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (crossAxisCount == 1) ...[
|
if (crossAxisCount == 1) ...[
|
||||||
const SizedBox(width: 10),
|
Text(
|
||||||
|
' • ',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize:
|
||||||
|
Theme.of(context).textTheme.labelMedium!.fontSize,
|
||||||
|
color: Theme.of(context).colorScheme.outline,
|
||||||
|
),
|
||||||
|
),
|
||||||
VideoStat(
|
VideoStat(
|
||||||
videoItem: videoItem,
|
videoItem: videoItem,
|
||||||
crossAxisCount: crossAxisCount,
|
|
||||||
),
|
),
|
||||||
const Spacer(),
|
const Spacer(),
|
||||||
],
|
],
|
||||||
if (videoItem.goto == 'av')
|
if (videoItem.goto == 'av' && crossAxisCount != 1) ...[
|
||||||
SizedBox(
|
VideoPopupMenu(
|
||||||
width: 24,
|
size: 24,
|
||||||
height: 24,
|
iconSize: 14,
|
||||||
child: IconButton(
|
|
||||||
padding: EdgeInsets.zero,
|
|
||||||
onPressed: () {
|
|
||||||
feedBack();
|
|
||||||
showModalBottomSheet(
|
|
||||||
context: context,
|
|
||||||
useRootNavigator: true,
|
|
||||||
isScrollControlled: true,
|
|
||||||
builder: (context) {
|
|
||||||
return MorePanel(
|
|
||||||
videoItem: videoItem,
|
videoItem: videoItem,
|
||||||
blockUserCb: blockUserCb,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
icon: Icon(
|
|
||||||
Icons.more_vert_outlined,
|
|
||||||
color: Theme.of(context).colorScheme.outline,
|
|
||||||
size: 14,
|
|
||||||
),
|
),
|
||||||
),
|
] else ...[
|
||||||
)
|
const SizedBox(height: 24)
|
||||||
|
]
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class VideoStat extends StatelessWidget {
|
class VideoStat extends StatelessWidget {
|
||||||
final dynamic videoItem;
|
final dynamic videoItem;
|
||||||
final int crossAxisCount;
|
|
||||||
|
|
||||||
const VideoStat({
|
const VideoStat({
|
||||||
Key? key,
|
Key? key,
|
||||||
required this.videoItem,
|
required this.videoItem,
|
||||||
required this.crossAxisCount,
|
|
||||||
}) : super(key: key);
|
}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Row(
|
return RichText(
|
||||||
children: [
|
|
||||||
StatView(view: videoItem.stat.view),
|
|
||||||
const SizedBox(width: 8),
|
|
||||||
StatDanMu(danmu: videoItem.stat.danmu),
|
|
||||||
if (videoItem is RecVideoItemModel) ...<Widget>[
|
|
||||||
crossAxisCount > 1 ? const Spacer() : const SizedBox(width: 8),
|
|
||||||
RichText(
|
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
text: TextSpan(
|
text: TextSpan(
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: Theme.of(context).textTheme.labelSmall!.fontSize,
|
fontSize: MediaQuery.textScalerOf(context)
|
||||||
|
.scale(Theme.of(context).textTheme.labelSmall!.fontSize!),
|
||||||
color: Theme.of(context).colorScheme.outline,
|
color: Theme.of(context).colorScheme.outline,
|
||||||
),
|
),
|
||||||
text: Utils.formatTimestampToRelativeTime(videoItem.pubdate)),
|
children: [
|
||||||
),
|
if (videoItem.stat.view != '-')
|
||||||
const SizedBox(width: 4),
|
TextSpan(text: '${videoItem.stat.view}观看'),
|
||||||
]
|
if (videoItem.stat.danmu != '-')
|
||||||
|
TextSpan(text: ' • ${videoItem.stat.danmu}弹幕'),
|
||||||
],
|
],
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class MorePanel extends StatelessWidget {
|
class VideoPopupMenu extends StatelessWidget {
|
||||||
|
final double? size;
|
||||||
|
final double? iconSize;
|
||||||
final dynamic videoItem;
|
final dynamic videoItem;
|
||||||
final Function? blockUserCb;
|
|
||||||
const MorePanel({
|
const VideoPopupMenu({
|
||||||
super.key,
|
Key? key,
|
||||||
|
required this.size,
|
||||||
|
required this.iconSize,
|
||||||
required this.videoItem,
|
required this.videoItem,
|
||||||
this.blockUserCb,
|
}) : super(key: key);
|
||||||
});
|
|
||||||
|
|
||||||
Future<dynamic> menuActionHandler(String type) async {
|
@override
|
||||||
switch (type) {
|
Widget build(BuildContext context) {
|
||||||
case 'block':
|
return SizedBox(
|
||||||
Get.back();
|
width: size,
|
||||||
blockUser();
|
height: size,
|
||||||
break;
|
child: PopupMenuButton<String>(
|
||||||
case 'watchLater':
|
padding: EdgeInsets.zero,
|
||||||
var res = await UserHttp.toViewLater(bvid: videoItem.bvid as String);
|
icon: Icon(
|
||||||
|
Icons.more_vert_outlined,
|
||||||
|
color: Theme.of(context).colorScheme.outline,
|
||||||
|
size: iconSize,
|
||||||
|
),
|
||||||
|
position: PopupMenuPosition.under,
|
||||||
|
// constraints: const BoxConstraints(maxHeight: 35),
|
||||||
|
onSelected: (String type) {},
|
||||||
|
itemBuilder: (BuildContext context) => <PopupMenuEntry<String>>[
|
||||||
|
PopupMenuItem<String>(
|
||||||
|
onTap: () async {
|
||||||
|
var res =
|
||||||
|
await UserHttp.toViewLater(bvid: videoItem.bvid as String);
|
||||||
SmartDialog.showToast(res['msg']);
|
SmartDialog.showToast(res['msg']);
|
||||||
Get.back();
|
},
|
||||||
break;
|
value: 'pause',
|
||||||
default:
|
height: 40,
|
||||||
}
|
child: const Row(
|
||||||
}
|
children: [
|
||||||
|
Icon(Icons.watch_later_outlined, size: 16),
|
||||||
void blockUser() async {
|
SizedBox(width: 6),
|
||||||
|
Text('稍后再看', style: TextStyle(fontSize: 13))
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const PopupMenuDivider(),
|
||||||
|
PopupMenuItem<String>(
|
||||||
|
onTap: () async {
|
||||||
SmartDialog.show(
|
SmartDialog.show(
|
||||||
useSystem: true,
|
useSystem: true,
|
||||||
animationType: SmartAnimationType.centerFade_otherSlide,
|
animationType: SmartAnimationType.centerFade_otherSlide,
|
||||||
builder: (BuildContext context) {
|
builder: (BuildContext context) {
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
title: const Text('提示'),
|
title: const Text('提示'),
|
||||||
content: Text('确定拉黑:${videoItem.owner.name}(${videoItem.owner.mid})?'
|
content: Text(
|
||||||
|
'确定拉黑:${videoItem.owner.name}(${videoItem.owner.mid})?'
|
||||||
'\n\n注:被拉黑的Up可以在隐私设置-黑名单管理中解除'),
|
'\n\n注:被拉黑的Up可以在隐私设置-黑名单管理中解除'),
|
||||||
actions: [
|
actions: [
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () => SmartDialog.dismiss(),
|
onPressed: () => SmartDialog.dismiss(),
|
||||||
child: Text(
|
child: Text(
|
||||||
'点错了',
|
'点错了',
|
||||||
style: TextStyle(color: Theme.of(context).colorScheme.outline),
|
style: TextStyle(
|
||||||
|
color: Theme.of(context).colorScheme.outline),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
TextButton(
|
TextButton(
|
||||||
@ -352,10 +414,7 @@ class MorePanel extends StatelessWidget {
|
|||||||
reSrc: 11,
|
reSrc: 11,
|
||||||
);
|
);
|
||||||
SmartDialog.dismiss();
|
SmartDialog.dismiss();
|
||||||
if (res['status']) {
|
SmartDialog.showToast(res['msg'] ?? '成功');
|
||||||
blockUserCb?.call(videoItem.owner.mid);
|
|
||||||
}
|
|
||||||
SmartDialog.showToast(res['msg']);
|
|
||||||
},
|
},
|
||||||
child: const Text('确认'),
|
child: const Text('确认'),
|
||||||
)
|
)
|
||||||
@ -363,56 +422,18 @@ class MorePanel extends StatelessWidget {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
|
value: 'pause',
|
||||||
@override
|
height: 40,
|
||||||
Widget build(BuildContext context) {
|
child: Row(
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(bottom: MediaQuery.of(context).padding.bottom),
|
|
||||||
child: Column(
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
children: [
|
children: [
|
||||||
InkWell(
|
const Icon(Icons.block, size: 16),
|
||||||
onTap: () => Get.back(),
|
const SizedBox(width: 6),
|
||||||
child: Container(
|
Text('拉黑:${videoItem.owner.name}',
|
||||||
height: 35,
|
style: const TextStyle(fontSize: 13))
|
||||||
padding: const EdgeInsets.only(bottom: 2),
|
],
|
||||||
child: Center(
|
|
||||||
child: Container(
|
|
||||||
width: 32,
|
|
||||||
height: 3,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Theme.of(context).colorScheme.outline,
|
|
||||||
borderRadius: const BorderRadius.all(Radius.circular(3))),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
onTap: () async => await menuActionHandler('block'),
|
|
||||||
minLeadingWidth: 0,
|
|
||||||
leading: const Icon(Icons.block, size: 19),
|
|
||||||
title: Text(
|
|
||||||
'拉黑up主 「${videoItem.owner.name}」',
|
|
||||||
style: Theme.of(context).textTheme.titleSmall,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
onTap: () async => await menuActionHandler('watchLater'),
|
|
||||||
minLeadingWidth: 0,
|
|
||||||
leading: const Icon(Icons.watch_later_outlined, size: 19),
|
|
||||||
title:
|
|
||||||
Text('添加至稍后再看', style: Theme.of(context).textTheme.titleSmall),
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
onTap: () =>
|
|
||||||
imageSaveDialog(context, videoItem, SmartDialog.dismiss),
|
|
||||||
minLeadingWidth: 0,
|
|
||||||
leading: const Icon(Icons.photo_outlined, size: 19),
|
|
||||||
title:
|
|
||||||
Text('查看视频封面', style: Theme.of(context).textTheme.titleSmall),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 20),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@ -189,7 +189,7 @@ class Api {
|
|||||||
'https://s.search.bilibili.com/main/suggest';
|
'https://s.search.bilibili.com/main/suggest';
|
||||||
|
|
||||||
// 分类搜索
|
// 分类搜索
|
||||||
static const String searchByType = '/x/web-interface/wbi/search/type';
|
static const String searchByType = '/x/web-interface/search/type';
|
||||||
|
|
||||||
// 记录视频播放进度
|
// 记录视频播放进度
|
||||||
// https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/video/report.md
|
// https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/video/report.md
|
||||||
@ -214,9 +214,6 @@ class Api {
|
|||||||
// https://api.bilibili.com/x/relation/tags
|
// https://api.bilibili.com/x/relation/tags
|
||||||
static const String followingsClass = '/x/relation/tags';
|
static const String followingsClass = '/x/relation/tags';
|
||||||
|
|
||||||
// 搜索follow
|
|
||||||
static const followSearch = '/x/relation/followings/search';
|
|
||||||
|
|
||||||
// 粉丝
|
// 粉丝
|
||||||
// vmid 用户id pn 页码 ps 每页个数,最大50 order: desc
|
// vmid 用户id pn 页码 ps 每页个数,最大50 order: desc
|
||||||
// order_type 排序规则 最近访问传空,最常访问传 attention
|
// order_type 排序规则 最近访问传空,最常访问传 attention
|
||||||
@ -233,10 +230,6 @@ class Api {
|
|||||||
static const String liveRoomInfo =
|
static const String liveRoomInfo =
|
||||||
'${HttpString.liveBaseUrl}/xlive/web-room/v2/index/getRoomPlayInfo';
|
'${HttpString.liveBaseUrl}/xlive/web-room/v2/index/getRoomPlayInfo';
|
||||||
|
|
||||||
// 直播间详情 H5
|
|
||||||
static const String liveRoomInfoH5 =
|
|
||||||
'${HttpString.liveBaseUrl}/xlive/web-room/v1/index/getH5InfoByRoom';
|
|
||||||
|
|
||||||
// 用户信息 需要Wbi签名
|
// 用户信息 需要Wbi签名
|
||||||
// https://api.bilibili.com/x/space/wbi/acc/info?mid=503427686&token=&platform=web&web_location=1550101&w_rid=d709892496ce93e3d94d6d37c95bde91&wts=1689301482
|
// https://api.bilibili.com/x/space/wbi/acc/info?mid=503427686&token=&platform=web&web_location=1550101&w_rid=d709892496ce93e3d94d6d37c95bde91&wts=1689301482
|
||||||
static const String memberInfo = '/x/space/wbi/acc/info';
|
static const String memberInfo = '/x/space/wbi/acc/info';
|
||||||
@ -400,24 +393,12 @@ class Api {
|
|||||||
'${HttpString.passBaseUrl}/x/passport-login/captcha?source=main_web';
|
'${HttpString.passBaseUrl}/x/passport-login/captcha?source=main_web';
|
||||||
|
|
||||||
// web端短信验证码
|
// web端短信验证码
|
||||||
static const String webSmsCode =
|
static const String smsCode =
|
||||||
'${HttpString.passBaseUrl}/x/passport-login/web/sms/send';
|
'${HttpString.passBaseUrl}/x/passport-login/web/sms/send';
|
||||||
|
|
||||||
// web端验证码登录
|
// web端验证码登录
|
||||||
static const String webSmsLogin =
|
|
||||||
'${HttpString.passBaseUrl}/x/passport-login/web/login/sms';
|
|
||||||
|
|
||||||
// web端密码登录
|
// web端密码登录
|
||||||
static const String loginInByWebPwd =
|
|
||||||
'${HttpString.passBaseUrl}/x/passport-login/web/login';
|
|
||||||
|
|
||||||
// web端二维码
|
|
||||||
static const String qrCodeApi =
|
|
||||||
'${HttpString.passBaseUrl}/x/passport-login/web/qrcode/generate';
|
|
||||||
|
|
||||||
// 扫码登录
|
|
||||||
static const String loginInByQrcode =
|
|
||||||
'${HttpString.passBaseUrl}/x/passport-login/web/qrcode/poll';
|
|
||||||
|
|
||||||
// app端短信验证码
|
// app端短信验证码
|
||||||
static const String appSmsCode =
|
static const String appSmsCode =
|
||||||
@ -487,112 +468,6 @@ class Api {
|
|||||||
static const getSeasonDetailApi =
|
static const getSeasonDetailApi =
|
||||||
'/x/polymer/web-space/seasons_archives_list';
|
'/x/polymer/web-space/seasons_archives_list';
|
||||||
|
|
||||||
static const getSeriesDetailApi = '/x/series/archives';
|
|
||||||
|
|
||||||
/// 获取未读动态数
|
/// 获取未读动态数
|
||||||
static const getUnreadDynamic = '/x/web-interface/dynamic/entrance';
|
static const getUnreadDynamic = '/x/web-interface/dynamic/entrance';
|
||||||
|
|
||||||
/// 用户动态主页
|
|
||||||
static const dynamicSpmPrefix = 'https://space.bilibili.com/1/dynamic';
|
|
||||||
|
|
||||||
/// 激活buvid3
|
|
||||||
static const activateBuvidApi = '/x/internal/gaia-gateway/ExClimbWuzhi';
|
|
||||||
|
|
||||||
/// 获取字幕配置
|
|
||||||
static const getSubtitleConfig = '/x/player/v2';
|
|
||||||
|
|
||||||
/// 我的订阅
|
|
||||||
static const userSubFolder = '/x/v3/fav/folder/collected/list';
|
|
||||||
|
|
||||||
/// 我的订阅详情 type 21
|
|
||||||
static const userSeasonList = '/x/space/fav/season/list';
|
|
||||||
|
|
||||||
/// 我的订阅详情 type 11
|
|
||||||
static const userResourceList = '/x/v3/fav/resource/list';
|
|
||||||
|
|
||||||
/// 表情
|
|
||||||
static const emojiList = '/x/emote/user/panel/web';
|
|
||||||
|
|
||||||
/// 已读标记
|
|
||||||
static const String ackSessionMsg =
|
|
||||||
'${HttpString.tUrl}/session_svr/v1/session_svr/update_ack';
|
|
||||||
|
|
||||||
/// 发送私信
|
|
||||||
static const String sendMsg = '${HttpString.tUrl}/web_im/v1/web_im/send_msg';
|
|
||||||
|
|
||||||
/// 排行榜
|
|
||||||
static const String getRankApi = "/x/web-interface/ranking/v2";
|
|
||||||
|
|
||||||
/// 取消订阅
|
|
||||||
static const String cancelSub = '/x/v3/fav/season/unfav';
|
|
||||||
|
|
||||||
/// 动态转发
|
|
||||||
static const String dynamicForwardUrl = '/x/dynamic/feed/create/submit_check';
|
|
||||||
|
|
||||||
/// 创建动态
|
|
||||||
static const String dynamicCreate = '/x/dynamic/feed/create/dyn';
|
|
||||||
|
|
||||||
/// 删除收藏夹
|
|
||||||
static const String delFavFolder = '/x/v3/fav/folder/del';
|
|
||||||
|
|
||||||
/// 搜索结果计数
|
|
||||||
static const String searchCount = '/x/web-interface/wbi/search/all/v2';
|
|
||||||
|
|
||||||
/// 关闭会话
|
|
||||||
static const String removeSession =
|
|
||||||
'${HttpString.tUrl}/session_svr/v1/session_svr/remove_session';
|
|
||||||
|
|
||||||
/// 消息未读数
|
|
||||||
static const String unread = '${HttpString.tUrl}/x/im/web/msgfeed/unread';
|
|
||||||
|
|
||||||
/// 回复我的
|
|
||||||
static const String messageReplyAPi = '/x/msgfeed/reply';
|
|
||||||
|
|
||||||
/// 收到的赞
|
|
||||||
static const String messageLikeAPi = '/x/msgfeed/like';
|
|
||||||
|
|
||||||
/// 系统通知
|
|
||||||
static const String messageSystemAPi =
|
|
||||||
'${HttpString.messageBaseUrl}/x/sys-msg/query_unified_notify';
|
|
||||||
|
|
||||||
/// 系统通知 个人
|
|
||||||
static const String userMessageSystemAPi =
|
|
||||||
'${HttpString.messageBaseUrl}/x/sys-msg/query_user_notify';
|
|
||||||
|
|
||||||
/// 系统通知标记已读
|
|
||||||
static const String systemMarkRead =
|
|
||||||
'${HttpString.messageBaseUrl}/x/sys-msg/update_cursor';
|
|
||||||
|
|
||||||
/// 编辑收藏夹
|
|
||||||
static const String editFavFolder = '/x/v3/fav/folder/edit';
|
|
||||||
|
|
||||||
/// 新建收藏夹
|
|
||||||
static const String addFavFolder = '/x/v3/fav/folder/add';
|
|
||||||
|
|
||||||
/// 直播间弹幕信息
|
|
||||||
static const String getDanmuInfo =
|
|
||||||
'${HttpString.liveBaseUrl}/xlive/web-room/v1/index/getDanmuInfo';
|
|
||||||
|
|
||||||
/// 直播间发送弹幕
|
|
||||||
static const String sendLiveMsg = '${HttpString.liveBaseUrl}/msg/send';
|
|
||||||
|
|
||||||
/// 我的关注 - 正在直播
|
|
||||||
static const String getFollowingLive =
|
|
||||||
'${HttpString.liveBaseUrl}/xlive/web-ucenter/user/following';
|
|
||||||
|
|
||||||
/// 稍后再看&收藏夹视频列表
|
|
||||||
static const String mediaList = '/x/v2/medialist/resource/list';
|
|
||||||
|
|
||||||
/// 用户专栏
|
|
||||||
static const String opusList = '/x/polymer/web-dynamic/v1/opus/feed/space';
|
|
||||||
|
|
||||||
///
|
|
||||||
static const String getViewInfo = '/x/article/viewinfo';
|
|
||||||
|
|
||||||
/// 直播间记录
|
|
||||||
static const String liveRoomEntry =
|
|
||||||
'${HttpString.liveBaseUrl}/xlive/web-room/v1/index/roomEntryAction';
|
|
||||||
|
|
||||||
/// 删除评论
|
|
||||||
static const String replyDel = '/x/v2/reply/del';
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,7 +28,7 @@ class BlackHttp {
|
|||||||
static Future removeBlack({required int fid}) async {
|
static Future removeBlack({required int fid}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.removeBlack,
|
Api.removeBlack,
|
||||||
data: {
|
queryParameters: {
|
||||||
'act': 6,
|
'act': 6,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
'fid': fid,
|
'fid': fid,
|
||||||
|
|||||||
@ -5,8 +5,6 @@ class HttpString {
|
|||||||
static const String appBaseUrl = 'https://app.bilibili.com';
|
static const String appBaseUrl = 'https://app.bilibili.com';
|
||||||
static const String liveBaseUrl = 'https://api.live.bilibili.com';
|
static const String liveBaseUrl = 'https://api.live.bilibili.com';
|
||||||
static const String passBaseUrl = 'https://passport.bilibili.com';
|
static const String passBaseUrl = 'https://passport.bilibili.com';
|
||||||
static const String messageBaseUrl = 'https://message.bilibili.com';
|
|
||||||
static const String bangumiBaseUrl = 'https://bili.meark.me';
|
|
||||||
static const List<int> validateStatusCodes = [
|
static const List<int> validateStatusCodes = [
|
||||||
302,
|
302,
|
||||||
304,
|
304,
|
||||||
|
|||||||
@ -67,6 +67,9 @@ class DanmakaHttp {
|
|||||||
var response = await Request().post(
|
var response = await Request().post(
|
||||||
Api.shootDanmaku,
|
Api.shootDanmaku,
|
||||||
data: params,
|
data: params,
|
||||||
|
options: Options(
|
||||||
|
contentType: Headers.formUrlEncodedContentType,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
if (response.statusCode != 200) {
|
if (response.statusCode != 200) {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
import 'dart:math';
|
|
||||||
import 'package:dio/dio.dart';
|
|
||||||
import '../models/dynamics/result.dart';
|
import '../models/dynamics/result.dart';
|
||||||
import '../models/dynamics/up.dart';
|
import '../models/dynamics/up.dart';
|
||||||
import 'index.dart';
|
import 'index.dart';
|
||||||
@ -42,7 +40,6 @@ class DynamicsHttp {
|
|||||||
'status': false,
|
'status': false,
|
||||||
'data': [],
|
'data': [],
|
||||||
'msg': res.data['message'],
|
'msg': res.data['message'],
|
||||||
'code': res.data['code'],
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,7 +67,7 @@ class DynamicsHttp {
|
|||||||
}) async {
|
}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.likeDynamic,
|
Api.likeDynamic,
|
||||||
data: {
|
queryParameters: {
|
||||||
'dynamic_id': dynamicId,
|
'dynamic_id': dynamicId,
|
||||||
'up': up,
|
'up': up,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
@ -120,99 +117,4 @@ class DynamicsHttp {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future dynamicForward() async {
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.dynamicForwardUrl,
|
|
||||||
queryParameters: {
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
'x-bili-device-req-json': {'platform': 'web', 'device': 'pc'},
|
|
||||||
'x-bili-web-req-json': {'spm_id': '333.999'},
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
'attach_card': null,
|
|
||||||
'scene': 4,
|
|
||||||
'content': {
|
|
||||||
'conetents': [
|
|
||||||
{'raw_text': "2", 'type': 1, 'biz_id': ""}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future dynamicCreate({
|
|
||||||
required int mid,
|
|
||||||
required int scene,
|
|
||||||
int? oid,
|
|
||||||
String? dynIdStr,
|
|
||||||
String? rawText,
|
|
||||||
}) async {
|
|
||||||
DateTime now = DateTime.now();
|
|
||||||
int timestamp = now.millisecondsSinceEpoch ~/ 1000;
|
|
||||||
Random random = Random();
|
|
||||||
int randomNumber = random.nextInt(9000) + 1000;
|
|
||||||
String uploadId = '${mid}_${timestamp}_$randomNumber';
|
|
||||||
|
|
||||||
Map<String, dynamic> webRepostSrc = {
|
|
||||||
'dyn_id_str': dynIdStr ?? '',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// 投稿转发
|
|
||||||
if (scene == 5) {
|
|
||||||
webRepostSrc = {
|
|
||||||
'revs_id': {'dyn_type': 8, 'rid': oid}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.dynamicCreate,
|
|
||||||
queryParameters: {
|
|
||||||
'platform': 'web',
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
'x-bili-device-req-json': {'platform': 'web', 'device': 'pc'},
|
|
||||||
'x-bili-web-req-json': {'spm_id': '333.999'},
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
'dyn_req': {
|
|
||||||
'content': {
|
|
||||||
'contents': [
|
|
||||||
{'raw_text': rawText ?? '', 'type': 1, 'biz_id': ''}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
'scene': scene,
|
|
||||||
'attach_card': null,
|
|
||||||
'upload_id': uploadId,
|
|
||||||
'meta': {
|
|
||||||
'app_meta': {'from': 'create.dynamic.web', 'mobi_app': 'web'}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'web_repost_src': webRepostSrc
|
|
||||||
},
|
|
||||||
options: Options(contentType: 'application/json'),
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,67 +0,0 @@
|
|||||||
import 'index.dart';
|
|
||||||
|
|
||||||
class FavHttp {
|
|
||||||
/// 编辑收藏夹
|
|
||||||
static Future editFolder({
|
|
||||||
required String title,
|
|
||||||
required String intro,
|
|
||||||
required String mediaId,
|
|
||||||
String? cover,
|
|
||||||
int? privacy,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.editFavFolder,
|
|
||||||
data: {
|
|
||||||
'title': title,
|
|
||||||
'intro': intro,
|
|
||||||
'media_id': mediaId,
|
|
||||||
'cover': cover ?? '',
|
|
||||||
'privacy': privacy ?? 0,
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 新建收藏夹
|
|
||||||
static Future addFolder({
|
|
||||||
required String title,
|
|
||||||
required String intro,
|
|
||||||
String? cover,
|
|
||||||
int? privacy,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.addFavFolder,
|
|
||||||
data: {
|
|
||||||
'title': title,
|
|
||||||
'intro': intro,
|
|
||||||
'cover': cover ?? '',
|
|
||||||
'privacy': privacy ?? 0,
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,9 +1,7 @@
|
|||||||
// ignore_for_file: avoid_print
|
// ignore_for_file: avoid_print
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
|
||||||
import 'dart:developer';
|
import 'dart:developer';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:math' show Random;
|
|
||||||
import 'package:cookie_jar/cookie_jar.dart';
|
import 'package:cookie_jar/cookie_jar.dart';
|
||||||
import 'package:dio/dio.dart';
|
import 'package:dio/dio.dart';
|
||||||
import 'package:dio/io.dart';
|
import 'package:dio/io.dart';
|
||||||
@ -13,7 +11,6 @@ import 'package:hive/hive.dart';
|
|||||||
import 'package:pilipala/utils/id_utils.dart';
|
import 'package:pilipala/utils/id_utils.dart';
|
||||||
import '../utils/storage.dart';
|
import '../utils/storage.dart';
|
||||||
import '../utils/utils.dart';
|
import '../utils/utils.dart';
|
||||||
import 'api.dart';
|
|
||||||
import 'constants.dart';
|
import 'constants.dart';
|
||||||
import 'interceptor.dart';
|
import 'interceptor.dart';
|
||||||
|
|
||||||
@ -27,14 +24,10 @@ class Request {
|
|||||||
late bool enableSystemProxy;
|
late bool enableSystemProxy;
|
||||||
late String systemProxyHost;
|
late String systemProxyHost;
|
||||||
late String systemProxyPort;
|
late String systemProxyPort;
|
||||||
static final RegExp spmPrefixExp =
|
|
||||||
RegExp(r'<meta name="spm_prefix" content="([^"]+?)">');
|
|
||||||
static String? buvid;
|
|
||||||
|
|
||||||
/// 设置cookie
|
/// 设置cookie
|
||||||
static setCookie() async {
|
static setCookie() async {
|
||||||
Box userInfoCache = GStrorage.userInfo;
|
Box userInfoCache = GStrorage.userInfo;
|
||||||
Box setting = GStrorage.setting;
|
|
||||||
final String cookiePath = await Utils.getCookiePath();
|
final String cookiePath = await Utils.getCookiePath();
|
||||||
final PersistCookieJar cookieJar = PersistCookieJar(
|
final PersistCookieJar cookieJar = PersistCookieJar(
|
||||||
ignoreExpires: true,
|
ignoreExpires: true,
|
||||||
@ -57,21 +50,17 @@ class Request {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
setOptionsHeaders(userInfo, userInfo != null && userInfo.mid != null);
|
setOptionsHeaders(userInfo, userInfo != null && userInfo.mid != null);
|
||||||
String baseUrlType = 'default';
|
|
||||||
if (setting.get(SettingBoxKey.enableGATMode, defaultValue: false)) {
|
if (cookie.isEmpty) {
|
||||||
baseUrlType = 'bangumi';
|
|
||||||
}
|
|
||||||
setBaseUrl(type: baseUrlType);
|
|
||||||
try {
|
try {
|
||||||
await buvidActivate();
|
await Request().get(HttpString.baseUrl);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
log("setCookie, ${e.toString()}");
|
log("setCookie, ${e.toString()}");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
final String cookieString = cookie
|
final String cookieString = cookie
|
||||||
.map((Cookie cookie) => '${cookie.name}=${cookie.value}')
|
.map((Cookie cookie) => '${cookie.name}=${cookie.value}')
|
||||||
.join('; ');
|
.join('; ');
|
||||||
|
|
||||||
dio.options.headers['cookie'] = cookieString;
|
dio.options.headers['cookie'] = cookieString;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,30 +75,6 @@ class Request {
|
|||||||
return token;
|
return token;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<String> getBuvid() async {
|
|
||||||
if (buvid != null) {
|
|
||||||
return buvid!;
|
|
||||||
}
|
|
||||||
|
|
||||||
final List<Cookie> cookies = await cookieManager.cookieJar
|
|
||||||
.loadForRequest(Uri.parse(HttpString.baseUrl));
|
|
||||||
buvid = cookies.firstWhere((cookie) => cookie.name == 'buvid3').value;
|
|
||||||
if (buvid == null) {
|
|
||||||
try {
|
|
||||||
var result = await Request().get(
|
|
||||||
"${HttpString.apiBaseUrl}/x/frontend/finger/spi",
|
|
||||||
);
|
|
||||||
buvid = result["data"]["b_3"].toString();
|
|
||||||
} catch (e) {
|
|
||||||
// 处理请求错误
|
|
||||||
buvid = '';
|
|
||||||
print("Error fetching buvid: $e");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return buvid!;
|
|
||||||
}
|
|
||||||
|
|
||||||
static setOptionsHeaders(userInfo, bool status) {
|
static setOptionsHeaders(userInfo, bool status) {
|
||||||
if (status) {
|
if (status) {
|
||||||
dio.options.headers['x-bili-mid'] = userInfo.mid.toString();
|
dio.options.headers['x-bili-mid'] = userInfo.mid.toString();
|
||||||
@ -122,30 +87,6 @@ class Request {
|
|||||||
dio.options.headers['referer'] = 'https://www.bilibili.com/';
|
dio.options.headers['referer'] = 'https://www.bilibili.com/';
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future buvidActivate() async {
|
|
||||||
var html = await Request().get(Api.dynamicSpmPrefix);
|
|
||||||
String spmPrefix = spmPrefixExp.firstMatch(html.data)!.group(1)!;
|
|
||||||
Random rand = Random();
|
|
||||||
String rand_png_end = base64.encode(
|
|
||||||
List<int>.generate(32, (_) => rand.nextInt(256)) +
|
|
||||||
List<int>.filled(4, 0) +
|
|
||||||
[73, 69, 78, 68] +
|
|
||||||
List<int>.generate(4, (_) => rand.nextInt(256)));
|
|
||||||
|
|
||||||
String jsonData = json.encode({
|
|
||||||
'3064': 1,
|
|
||||||
'39c8': '${spmPrefix}.fp.risk',
|
|
||||||
'3c43': {
|
|
||||||
'adca': 'Linux',
|
|
||||||
'bfe9': rand_png_end.substring(rand_png_end.length - 50),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
await Request().post(Api.activateBuvidApi,
|
|
||||||
data: {'payload': jsonData},
|
|
||||||
options: Options(contentType: 'application/json'));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* config it and create
|
* config it and create
|
||||||
*/
|
*/
|
||||||
@ -260,8 +201,7 @@ class Request {
|
|||||||
url,
|
url,
|
||||||
data: data,
|
data: data,
|
||||||
queryParameters: queryParameters,
|
queryParameters: queryParameters,
|
||||||
options:
|
options: options,
|
||||||
options ?? Options(contentType: Headers.formUrlEncodedContentType),
|
|
||||||
cancelToken: cancelToken,
|
cancelToken: cancelToken,
|
||||||
);
|
);
|
||||||
// print('post success: ${response.data}');
|
// print('post success: ${response.data}');
|
||||||
@ -324,17 +264,4 @@ class Request {
|
|||||||
}
|
}
|
||||||
return headerUa;
|
return headerUa;
|
||||||
}
|
}
|
||||||
|
|
||||||
static setBaseUrl({String type = 'default'}) {
|
|
||||||
switch (type) {
|
|
||||||
case 'default':
|
|
||||||
dio.options.baseUrl = HttpString.apiBaseUrl;
|
|
||||||
break;
|
|
||||||
case 'bangumi':
|
|
||||||
dio.options.baseUrl = HttpString.bangumiBaseUrl;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
dio.options.baseUrl = HttpString.apiBaseUrl;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -45,14 +45,10 @@ class ApiInterceptor extends Interceptor {
|
|||||||
void onError(DioException err, ErrorInterceptorHandler handler) async {
|
void onError(DioException err, ErrorInterceptorHandler handler) async {
|
||||||
// 处理网络请求错误
|
// 处理网络请求错误
|
||||||
// handler.next(err);
|
// handler.next(err);
|
||||||
String url = err.requestOptions.uri.toString();
|
|
||||||
final excludedPatterns = RegExp(r'heartbeat|seg\.so|online/total');
|
|
||||||
if (!excludedPatterns.hasMatch(url)) {
|
|
||||||
SmartDialog.showToast(
|
SmartDialog.showToast(
|
||||||
await dioError(err),
|
await dioError(err),
|
||||||
displayType: SmartToastType.onlyRefresh,
|
displayType: SmartToastType.onlyRefresh,
|
||||||
);
|
);
|
||||||
}
|
|
||||||
super.onError(err, handler);
|
super.onError(err, handler);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -79,23 +75,22 @@ class ApiInterceptor extends Interceptor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static Future<String> checkConnect() async {
|
static Future<String> checkConnect() async {
|
||||||
final List<ConnectivityResult> connectivityResult =
|
final ConnectivityResult connectivityResult =
|
||||||
await Connectivity().checkConnectivity();
|
await Connectivity().checkConnectivity();
|
||||||
if (connectivityResult.contains(ConnectivityResult.mobile)) {
|
switch (connectivityResult) {
|
||||||
|
case ConnectivityResult.mobile:
|
||||||
return '正在使用移动流量';
|
return '正在使用移动流量';
|
||||||
} else if (connectivityResult.contains(ConnectivityResult.wifi)) {
|
case ConnectivityResult.wifi:
|
||||||
return '正在使用wifi';
|
return '正在使用wifi';
|
||||||
} else if (connectivityResult.contains(ConnectivityResult.ethernet)) {
|
case ConnectivityResult.ethernet:
|
||||||
return '正在使用局域网';
|
return '正在使用局域网';
|
||||||
} else if (connectivityResult.contains(ConnectivityResult.vpn)) {
|
case ConnectivityResult.vpn:
|
||||||
return '正在使用代理网络';
|
return '正在使用代理网络';
|
||||||
} else if (connectivityResult.contains(ConnectivityResult.bluetooth)) {
|
case ConnectivityResult.other:
|
||||||
return '正在使用蓝牙网络';
|
|
||||||
} else if (connectivityResult.contains(ConnectivityResult.other)) {
|
|
||||||
return '正在使用其他网络';
|
return '正在使用其他网络';
|
||||||
} else if (connectivityResult.contains(ConnectivityResult.none)) {
|
case ConnectivityResult.none:
|
||||||
return '未连接到任何网络';
|
return '未连接到任何网络';
|
||||||
} else {
|
default:
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,8 +1,5 @@
|
|||||||
import 'package:pilipala/models/live/follow.dart';
|
|
||||||
|
|
||||||
import '../models/live/item.dart';
|
import '../models/live/item.dart';
|
||||||
import '../models/live/room_info.dart';
|
import '../models/live/room_info.dart';
|
||||||
import '../models/live/room_info_h5.dart';
|
|
||||||
import 'api.dart';
|
import 'api.dart';
|
||||||
import 'init.dart';
|
import 'init.dart';
|
||||||
|
|
||||||
@ -49,114 +46,4 @@ class LiveHttp {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future liveRoomInfoH5({roomId, qn}) async {
|
|
||||||
var res = await Request().get(Api.liveRoomInfoH5, data: {
|
|
||||||
'room_id': roomId,
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': RoomInfoH5Model.fromJson(res.data['data'])
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获取弹幕信息
|
|
||||||
static Future liveDanmakuInfo({roomId}) async {
|
|
||||||
var res = await Request().get(Api.getDanmuInfo, data: {
|
|
||||||
'id': roomId,
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 发送弹幕
|
|
||||||
static Future sendDanmaku({roomId, msg}) async {
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.sendLiveMsg,
|
|
||||||
data: {
|
|
||||||
'bubble': 0,
|
|
||||||
'msg': msg,
|
|
||||||
'color': 16777215, // 颜色
|
|
||||||
'mode': 1, // 模式
|
|
||||||
'room_type': 0,
|
|
||||||
'jumpfrom': 71001, // 直播间来源
|
|
||||||
'reply_mid': 0,
|
|
||||||
'reply_attr': 0,
|
|
||||||
'replay_dmid': '',
|
|
||||||
'statistics': {"appId": 100, "platform": 5},
|
|
||||||
'fontsize': 25, // 字体大小
|
|
||||||
'rnd': DateTime.now().millisecondsSinceEpoch ~/ 1000, // 时间戳
|
|
||||||
'roomid': roomId,
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
'csrf_token': await Request.getCsrf(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 我的关注 正在直播
|
|
||||||
static Future liveFollowing({int? pn, int? ps}) async {
|
|
||||||
var res = await Request().get(Api.getFollowingLive, data: {
|
|
||||||
'page': pn,
|
|
||||||
'page_size': ps,
|
|
||||||
'platform': 'web',
|
|
||||||
'ignoreRecord': 1,
|
|
||||||
'hit_ab': true,
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': LiveFollowingModel.fromJson(res.data['data'])
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 直播历史记录
|
|
||||||
static Future liveRoomEntry({required int roomId}) async {
|
|
||||||
await Request().post(
|
|
||||||
Api.liveRoomEntry,
|
|
||||||
data: {
|
|
||||||
'room_id': roomId,
|
|
||||||
'platform': 'pc',
|
|
||||||
'csrf_token': await Request.getCsrf(),
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
'visit_id': '',
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,7 +3,6 @@ import 'dart:math';
|
|||||||
import 'package:crypto/crypto.dart';
|
import 'package:crypto/crypto.dart';
|
||||||
import 'package:dio/dio.dart';
|
import 'package:dio/dio.dart';
|
||||||
import 'package:encrypt/encrypt.dart';
|
import 'package:encrypt/encrypt.dart';
|
||||||
import 'package:pilipala/http/constants.dart';
|
|
||||||
import 'package:uuid/uuid.dart';
|
import 'package:uuid/uuid.dart';
|
||||||
import '../models/login/index.dart';
|
import '../models/login/index.dart';
|
||||||
import '../utils/login.dart';
|
import '../utils/login.dart';
|
||||||
@ -22,32 +21,32 @@ class LoginHttp {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// static Future sendSmsCode({
|
static Future sendSmsCode({
|
||||||
// int? cid,
|
int? cid,
|
||||||
// required int tel,
|
required int tel,
|
||||||
// required String token,
|
required String token,
|
||||||
// required String challenge,
|
required String challenge,
|
||||||
// required String validate,
|
required String validate,
|
||||||
// required String seccode,
|
required String seccode,
|
||||||
// }) async {
|
}) async {
|
||||||
// var res = await Request().post(
|
var res = await Request().post(
|
||||||
// Api.appSmsCode,
|
Api.appSmsCode,
|
||||||
// data: {
|
data: {
|
||||||
// 'cid': cid,
|
'cid': cid,
|
||||||
// 'tel': tel,
|
'tel': tel,
|
||||||
// "source": "main_web",
|
"source": "main_web",
|
||||||
// 'token': token,
|
'token': token,
|
||||||
// 'challenge': challenge,
|
'challenge': challenge,
|
||||||
// 'validate': validate,
|
'validate': validate,
|
||||||
// 'seccode': seccode,
|
'seccode': seccode,
|
||||||
// },
|
},
|
||||||
// options: Options(
|
options: Options(
|
||||||
// contentType: Headers.formUrlEncodedContentType,
|
contentType: Headers.formUrlEncodedContentType,
|
||||||
// // headers: {'user-agent': ApiConstants.userAgent}
|
// headers: {'user-agent': ApiConstants.userAgent}
|
||||||
// ),
|
),
|
||||||
// );
|
);
|
||||||
// print(res);
|
print(res);
|
||||||
// }
|
}
|
||||||
|
|
||||||
// web端验证码
|
// web端验证码
|
||||||
static Future sendWebSmsCode({
|
static Future sendWebSmsCode({
|
||||||
@ -61,7 +60,6 @@ class LoginHttp {
|
|||||||
Map data = {
|
Map data = {
|
||||||
'cid': cid,
|
'cid': cid,
|
||||||
'tel': tel,
|
'tel': tel,
|
||||||
"source": "main_web",
|
|
||||||
'token': token,
|
'token': token,
|
||||||
'challenge': challenge,
|
'challenge': challenge,
|
||||||
'validate': validate,
|
'validate': validate,
|
||||||
@ -69,50 +67,17 @@ class LoginHttp {
|
|||||||
};
|
};
|
||||||
FormData formData = FormData.fromMap({...data});
|
FormData formData = FormData.fromMap({...data});
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.webSmsCode,
|
Api.smsCode,
|
||||||
data: formData,
|
data: formData,
|
||||||
|
options: Options(
|
||||||
|
contentType: Headers.formUrlEncodedContentType,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
if (res.data['code'] == 0) {
|
print(res);
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// web端验证码登录
|
// web端验证码登录
|
||||||
static Future loginInByWebSmsCode({
|
static Future loginInByWebSmsCode() async {}
|
||||||
int? cid,
|
|
||||||
required int tel,
|
|
||||||
required int code,
|
|
||||||
required String captchaKey,
|
|
||||||
}) async {
|
|
||||||
// webSmsLogin
|
|
||||||
Map data = {
|
|
||||||
"cid": cid,
|
|
||||||
"tel": tel,
|
|
||||||
"code": code,
|
|
||||||
"source": "main_mini",
|
|
||||||
"keep": 0,
|
|
||||||
"captcha_key": captchaKey,
|
|
||||||
"go_url": HttpString.baseUrl
|
|
||||||
};
|
|
||||||
FormData formData = FormData.fromMap({...data});
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.webSmsLogin,
|
|
||||||
data: formData,
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// web端密码登录
|
// web端密码登录
|
||||||
static Future liginInByWebPwd() async {}
|
static Future liginInByWebPwd() async {}
|
||||||
@ -149,6 +114,9 @@ class LoginHttp {
|
|||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.appSmsCode,
|
Api.appSmsCode,
|
||||||
data: data,
|
data: data,
|
||||||
|
options: Options(
|
||||||
|
contentType: Headers.formUrlEncodedContentType,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
print(res);
|
print(res);
|
||||||
}
|
}
|
||||||
@ -199,82 +167,10 @@ class LoginHttp {
|
|||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.loginInByPwdApi,
|
Api.loginInByPwdApi,
|
||||||
data: data,
|
data: data,
|
||||||
|
options: Options(
|
||||||
|
contentType: Headers.formUrlEncodedContentType,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
print(res);
|
print(res);
|
||||||
}
|
}
|
||||||
|
|
||||||
// web端密码登录
|
|
||||||
static Future loginInByWebPwd({
|
|
||||||
required int username,
|
|
||||||
required String password,
|
|
||||||
required String token,
|
|
||||||
required String challenge,
|
|
||||||
required String validate,
|
|
||||||
required String seccode,
|
|
||||||
}) async {
|
|
||||||
Map data = {
|
|
||||||
'username': username,
|
|
||||||
'password': password,
|
|
||||||
'keep': 0,
|
|
||||||
'token': token,
|
|
||||||
'challenge': challenge,
|
|
||||||
'validate': validate,
|
|
||||||
'seccode': seccode,
|
|
||||||
'source': 'main-fe-header',
|
|
||||||
"go_url": HttpString.baseUrl
|
|
||||||
};
|
|
||||||
FormData formData = FormData.fromMap({...data});
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.loginInByWebPwd,
|
|
||||||
data: formData,
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
if (res.data['data']['status'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'code': 1,
|
|
||||||
'data': res.data['data'],
|
|
||||||
'msg': res.data['data']['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// web端登录二维码
|
|
||||||
static Future getWebQrcode() async {
|
|
||||||
var res = await Request().get(Api.qrCodeApi);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// web端二维码轮询登录状态
|
|
||||||
static Future queryWebQrcodeStatus(String qrcodeKey) async {
|
|
||||||
var res = await Request()
|
|
||||||
.get(Api.loginInByQrcode, data: {'qrcode_key': qrcodeKey});
|
|
||||||
if (res.data['data']['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +1,5 @@
|
|||||||
import 'dart:convert';
|
|
||||||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
import 'package:html/parser.dart';
|
|
||||||
import 'package:pilipala/models/member/article.dart';
|
|
||||||
import 'package:pilipala/models/member/like.dart';
|
|
||||||
import '../common/constants.dart';
|
import '../common/constants.dart';
|
||||||
import '../models/dynamics/result.dart';
|
import '../models/dynamics/result.dart';
|
||||||
import '../models/follow/result.dart';
|
import '../models/follow/result.dart';
|
||||||
@ -83,8 +79,6 @@ class MemberHttp {
|
|||||||
String order = 'pubdate',
|
String order = 'pubdate',
|
||||||
bool orderAvoided = true,
|
bool orderAvoided = true,
|
||||||
}) async {
|
}) async {
|
||||||
String dmImgStr = Utils.base64EncodeRandomString(16, 64);
|
|
||||||
String dmCoverImgStr = Utils.base64EncodeRandomString(32, 128);
|
|
||||||
Map params = await WbiSign().makSign({
|
Map params = await WbiSign().makSign({
|
||||||
'mid': mid,
|
'mid': mid,
|
||||||
'ps': ps,
|
'ps': ps,
|
||||||
@ -94,19 +88,8 @@ class MemberHttp {
|
|||||||
'order': order,
|
'order': order,
|
||||||
'platform': 'web',
|
'platform': 'web',
|
||||||
'web_location': 1550101,
|
'web_location': 1550101,
|
||||||
'order_avoided': orderAvoided,
|
'order_avoided': orderAvoided
|
||||||
'dm_img_list': '[]',
|
|
||||||
'dm_img_str': dmImgStr.substring(0, dmImgStr.length - 2),
|
|
||||||
'dm_cover_img_str': dmCoverImgStr.substring(0, dmCoverImgStr.length - 2),
|
|
||||||
'dm_img_inter': '{"ds":[],"wh":[0,0,0],"of":[0,0,0]}',
|
|
||||||
...order == 'charge'
|
|
||||||
? {
|
|
||||||
'order': 'pubdate',
|
|
||||||
'special_type': 'charging',
|
|
||||||
}
|
|
||||||
: {}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var res = await Request().get(
|
var res = await Request().get(
|
||||||
Api.memberArchive,
|
Api.memberArchive,
|
||||||
data: params,
|
data: params,
|
||||||
@ -118,13 +101,10 @@ class MemberHttp {
|
|||||||
'data': MemberArchiveDataModel.fromJson(res.data['data'])
|
'data': MemberArchiveDataModel.fromJson(res.data['data'])
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
Map errMap = {
|
|
||||||
-352: '风控校验失败,请检查登录状态',
|
|
||||||
};
|
|
||||||
return {
|
return {
|
||||||
'status': false,
|
'status': false,
|
||||||
'data': [],
|
'data': [],
|
||||||
'msg': errMap[res.data['code']] ?? res.data['message'],
|
'msg': res.data['message'],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -143,13 +123,10 @@ class MemberHttp {
|
|||||||
'data': DynamicsDataModel.fromJson(res.data['data']),
|
'data': DynamicsDataModel.fromJson(res.data['data']),
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
Map errMap = {
|
|
||||||
-352: '风控校验失败,请检查登录状态',
|
|
||||||
};
|
|
||||||
return {
|
return {
|
||||||
'status': false,
|
'status': false,
|
||||||
'data': [],
|
'data': [],
|
||||||
'msg': errMap[res.data['code']] ?? res.data['message'],
|
'msg': res.data['message'],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -198,15 +175,13 @@ class MemberHttp {
|
|||||||
|
|
||||||
// 设置分组
|
// 设置分组
|
||||||
static Future addUsers(int? fids, String? tagids) async {
|
static Future addUsers(int? fids, String? tagids) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(Api.addUsers, queryParameters: {
|
||||||
Api.addUsers,
|
|
||||||
data: {
|
|
||||||
'fids': fids,
|
'fids': fids,
|
||||||
'tagids': tagids ?? '0',
|
'tagids': tagids ?? '0',
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
}, data: {
|
||||||
queryParameters: {'cross_domain': true},
|
'cross_domain': true
|
||||||
);
|
});
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {'status': true, 'data': [], 'msg': '操作成功'};
|
return {'status': true, 'data': [], 'msg': '操作成功'};
|
||||||
} else {
|
} else {
|
||||||
@ -341,9 +316,7 @@ class MemberHttp {
|
|||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {
|
return {
|
||||||
'status': true,
|
'status': true,
|
||||||
'data': res.data['data']['list']
|
'data': MemberSeasonsDataModel.fromJson(res.data['data']['items_lists'])
|
||||||
.map<MemberLikeDataModel>((e) => MemberLikeDataModel.fromJson(e))
|
|
||||||
.toList(),
|
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
@ -424,14 +397,11 @@ class MemberHttp {
|
|||||||
static Future cookieToKey() async {
|
static Future cookieToKey() async {
|
||||||
var authCodeRes = await getTVCode();
|
var authCodeRes = await getTVCode();
|
||||||
if (authCodeRes['status']) {
|
if (authCodeRes['status']) {
|
||||||
var res = await Request().post(
|
var res = await Request().post(Api.cookieToKey, queryParameters: {
|
||||||
Api.cookieToKey,
|
|
||||||
data: {
|
|
||||||
'auth_code': authCodeRes['data'],
|
'auth_code': authCodeRes['data'],
|
||||||
'build': 708200,
|
'build': 708200,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
});
|
||||||
);
|
|
||||||
await Future.delayed(const Duration(milliseconds: 300));
|
await Future.delayed(const Duration(milliseconds: 300));
|
||||||
await qrcodePoll(authCodeRes['data']);
|
await qrcodePoll(authCodeRes['data']);
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
@ -491,133 +461,4 @@ class MemberHttp {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 搜索follow
|
|
||||||
static Future getfollowSearch({
|
|
||||||
required int mid,
|
|
||||||
required int ps,
|
|
||||||
required int pn,
|
|
||||||
required String name,
|
|
||||||
}) async {
|
|
||||||
Map<String, dynamic> data = {
|
|
||||||
'vmid': mid,
|
|
||||||
'pn': pn,
|
|
||||||
'ps': ps,
|
|
||||||
'order': 'desc',
|
|
||||||
'order_type': 'attention',
|
|
||||||
'gaia_source': 'main_web',
|
|
||||||
'name': name,
|
|
||||||
'web_location': 333.999,
|
|
||||||
};
|
|
||||||
Map params = await WbiSign().makSign(data);
|
|
||||||
var res = await Request().get(Api.followSearch, data: {
|
|
||||||
...data,
|
|
||||||
'w_rid': params['w_rid'],
|
|
||||||
'wts': params['wts'],
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': FollowDataModel.fromJson(res.data['data'])
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future getSeriesDetail({
|
|
||||||
required int mid,
|
|
||||||
required int currentMid,
|
|
||||||
required int seriesId,
|
|
||||||
required int pn,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().get(
|
|
||||||
Api.getSeriesDetailApi,
|
|
||||||
data: {
|
|
||||||
'mid': mid,
|
|
||||||
'series_id': seriesId,
|
|
||||||
'only_normal': true,
|
|
||||||
'sort': 'desc',
|
|
||||||
'pn': pn,
|
|
||||||
'ps': 30,
|
|
||||||
'current_mid': currentMid,
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
try {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': MemberSeasonsDataModel.fromJson(res.data['data'])
|
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
print(err);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future getWWebid({required int mid}) async {
|
|
||||||
var res = await Request().get('https://space.bilibili.com/$mid/article');
|
|
||||||
String? headContent = parse(res.data).head?.outerHtml;
|
|
||||||
final regex = RegExp(
|
|
||||||
r'<script id="__RENDER_DATA__" type="application/json">(.*?)</script>');
|
|
||||||
if (headContent != null) {
|
|
||||||
final match = regex.firstMatch(headContent);
|
|
||||||
if (match != null && match.groupCount >= 1) {
|
|
||||||
final content = match.group(1);
|
|
||||||
String decodedString = Uri.decodeComponent(content!);
|
|
||||||
Map<String, dynamic> map = jsonDecode(decodedString);
|
|
||||||
return {'status': true, 'data': map['access_id']};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'data': '请检查登录状态'};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return {'status': false, 'data': '请检查登录状态'};
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获取用户专栏
|
|
||||||
static Future getMemberArticle({
|
|
||||||
required int mid,
|
|
||||||
required int pn,
|
|
||||||
required String wWebid,
|
|
||||||
String? offset,
|
|
||||||
}) async {
|
|
||||||
Map params = await WbiSign().makSign({
|
|
||||||
'host_mid': mid,
|
|
||||||
'page': pn,
|
|
||||||
'offset': offset,
|
|
||||||
'web_location': 333.999,
|
|
||||||
'w_webid': wWebid,
|
|
||||||
});
|
|
||||||
var res = await Request().get(Api.opusList, data: {
|
|
||||||
'host_mid': mid,
|
|
||||||
'page': pn,
|
|
||||||
'offset': offset,
|
|
||||||
'web_location': 333.999,
|
|
||||||
'w_webid': wWebid,
|
|
||||||
'w_rid': params['w_rid'],
|
|
||||||
'wts': params['wts'],
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': MemberArticleDataModel.fromJson(res.data['data'])
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'] ?? '请求异常',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,8 +1,3 @@
|
|||||||
import 'dart:convert';
|
|
||||||
import 'dart:math';
|
|
||||||
import 'package:pilipala/models/msg/like.dart';
|
|
||||||
import 'package:pilipala/models/msg/reply.dart';
|
|
||||||
import 'package:pilipala/models/msg/system.dart';
|
|
||||||
import '../models/msg/account.dart';
|
import '../models/msg/account.dart';
|
||||||
import '../models/msg/session.dart';
|
import '../models/msg/session.dart';
|
||||||
import '../utils/wbi_sign.dart';
|
import '../utils/wbi_sign.dart';
|
||||||
@ -27,22 +22,14 @@ class MsgHttp {
|
|||||||
Map signParams = await WbiSign().makSign(params);
|
Map signParams = await WbiSign().makSign(params);
|
||||||
var res = await Request().get(Api.sessionList, data: signParams);
|
var res = await Request().get(Api.sessionList, data: signParams);
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
try {
|
|
||||||
return {
|
return {
|
||||||
'status': true,
|
'status': true,
|
||||||
'data': SessionDataModel.fromJson(res.data['data']),
|
'data': SessionDataModel.fromJson(res.data['data']),
|
||||||
};
|
};
|
||||||
} catch (err) {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': err.toString(),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
'status': false,
|
'status': false,
|
||||||
'data': [],
|
'date': [],
|
||||||
'msg': res.data['message'],
|
'msg': res.data['message'],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -55,16 +42,12 @@ class MsgHttp {
|
|||||||
'mobi_app': 'web',
|
'mobi_app': 'web',
|
||||||
});
|
});
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
try {
|
|
||||||
return {
|
return {
|
||||||
'status': true,
|
'status': true,
|
||||||
'data': res.data['data']
|
'data': res.data['data']
|
||||||
.map<AccountListModel>((e) => AccountListModel.fromJson(e))
|
.map<AccountListModel>((e) => AccountListModel.fromJson(e))
|
||||||
.toList(),
|
.toList(),
|
||||||
};
|
};
|
||||||
} catch (err) {
|
|
||||||
print('err🔟: $err');
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
'status': false,
|
'status': false,
|
||||||
@ -103,250 +86,4 @@ class MsgHttp {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 消息标记已读
|
|
||||||
static Future ackSessionMsg({
|
|
||||||
int? talkerId,
|
|
||||||
int? ackSeqno,
|
|
||||||
}) async {
|
|
||||||
String csrf = await Request.getCsrf();
|
|
||||||
Map params = await WbiSign().makSign({
|
|
||||||
'talker_id': talkerId,
|
|
||||||
'session_type': 1,
|
|
||||||
'ack_seqno': ackSeqno,
|
|
||||||
'build': 0,
|
|
||||||
'mobi_app': 'web',
|
|
||||||
'csrf_token': csrf,
|
|
||||||
'csrf': csrf
|
|
||||||
});
|
|
||||||
var res = await Request().get(Api.ackSessionMsg, data: params);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'date': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 发送私信
|
|
||||||
static Future sendMsg({
|
|
||||||
required int senderUid,
|
|
||||||
required int receiverId,
|
|
||||||
int? receiverType,
|
|
||||||
int? msgType,
|
|
||||||
dynamic content,
|
|
||||||
}) async {
|
|
||||||
String csrf = await Request.getCsrf();
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.sendMsg,
|
|
||||||
data: {
|
|
||||||
'msg[sender_uid]': senderUid,
|
|
||||||
'msg[receiver_id]': receiverId,
|
|
||||||
'msg[receiver_type]': 1,
|
|
||||||
'msg[msg_type]': 1,
|
|
||||||
'msg[msg_status]': 0,
|
|
||||||
'msg[content]': jsonEncode(content),
|
|
||||||
'msg[timestamp]': DateTime.now().millisecondsSinceEpoch ~/ 1000,
|
|
||||||
'msg[new_face_version]': 1,
|
|
||||||
'msg[dev_id]': getDevId(),
|
|
||||||
'from_firework': 0,
|
|
||||||
'build': 0,
|
|
||||||
'mobi_app': 'web',
|
|
||||||
'csrf_token': csrf,
|
|
||||||
'csrf': csrf,
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'date': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static String getDevId() {
|
|
||||||
final List<String> b = [
|
|
||||||
'0',
|
|
||||||
'1',
|
|
||||||
'2',
|
|
||||||
'3',
|
|
||||||
'4',
|
|
||||||
'5',
|
|
||||||
'6',
|
|
||||||
'7',
|
|
||||||
'8',
|
|
||||||
'9',
|
|
||||||
'A',
|
|
||||||
'B',
|
|
||||||
'C',
|
|
||||||
'D',
|
|
||||||
'E',
|
|
||||||
'F'
|
|
||||||
];
|
|
||||||
final List<String> s = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".split('');
|
|
||||||
for (int i = 0; i < s.length; i++) {
|
|
||||||
if ('-' == s[i] || '4' == s[i]) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
final int randomInt = Random().nextInt(16);
|
|
||||||
if ('x' == s[i]) {
|
|
||||||
s[i] = b[randomInt];
|
|
||||||
} else {
|
|
||||||
s[i] = b[3 & randomInt | 8];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return s.join();
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future removeSession({
|
|
||||||
int? talkerId,
|
|
||||||
}) async {
|
|
||||||
String csrf = await Request.getCsrf();
|
|
||||||
Map params = await WbiSign().makSign({
|
|
||||||
'talker_id': talkerId,
|
|
||||||
'session_type': 1,
|
|
||||||
'build': 0,
|
|
||||||
'mobi_app': 'web',
|
|
||||||
'csrf_token': csrf,
|
|
||||||
'csrf': csrf
|
|
||||||
});
|
|
||||||
var res = await Request().get(Api.removeSession, data: params);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'date': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future unread() async {
|
|
||||||
var res = await Request().get(Api.unread);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'date': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 回复我的
|
|
||||||
static Future messageReply({
|
|
||||||
int? id,
|
|
||||||
int? replyTime,
|
|
||||||
}) async {
|
|
||||||
var params = {
|
|
||||||
if (id != null) 'id': id,
|
|
||||||
if (replyTime != null) 'reply_time': replyTime,
|
|
||||||
};
|
|
||||||
var res = await Request().get(Api.messageReplyAPi, data: params);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
try {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': MessageReplyModel.fromJson(res.data['data']),
|
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
return {'status': false, 'date': [], 'msg': err.toString()};
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'date': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 收到的赞
|
|
||||||
static Future messageLike({
|
|
||||||
int? id,
|
|
||||||
int? likeTime,
|
|
||||||
}) async {
|
|
||||||
var params = {
|
|
||||||
if (id != null) 'id': id,
|
|
||||||
if (likeTime != null) 'like_time': likeTime,
|
|
||||||
};
|
|
||||||
var res = await Request().get(Api.messageLikeAPi, data: params);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
try {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': MessageLikeModel.fromJson(res.data['data']),
|
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
return {'status': false, 'date': [], 'msg': err.toString()};
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'date': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future messageSystem() async {
|
|
||||||
var res = await Request().get(Api.messageSystemAPi, data: {
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
'page_size': 20,
|
|
||||||
'build': 0,
|
|
||||||
'mobi_app': 'web',
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
try {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data']['system_notify_list']
|
|
||||||
.map<MessageSystemModel>((e) => MessageSystemModel.fromJson(e))
|
|
||||||
.toList(),
|
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
return {'status': false, 'date': [], 'msg': err.toString()};
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'date': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 系统消息标记已读
|
|
||||||
static Future systemMarkRead(int cursor) async {
|
|
||||||
String csrf = await Request.getCsrf();
|
|
||||||
var res = await Request().get(Api.systemMarkRead, data: {
|
|
||||||
'csrf': csrf,
|
|
||||||
'cursor': cursor,
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future messageSystemAccount() async {
|
|
||||||
var res = await Request().get(Api.userMessageSystemAPi, data: {
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
'page_size': 20,
|
|
||||||
'build': 0,
|
|
||||||
'mobi_app': 'web',
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
try {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data']['system_notify_list']
|
|
||||||
.map<MessageSystemModel>((e) => MessageSystemModel.fromJson(e))
|
|
||||||
.toList(),
|
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
return {'status': false, 'date': [], 'msg': err.toString()};
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'date': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,116 +0,0 @@
|
|||||||
import 'dart:convert';
|
|
||||||
import 'package:html/parser.dart';
|
|
||||||
import 'package:pilipala/models/read/opus.dart';
|
|
||||||
import 'package:pilipala/models/read/read.dart';
|
|
||||||
import 'package:pilipala/utils/wbi_sign.dart';
|
|
||||||
import 'index.dart';
|
|
||||||
|
|
||||||
class ReadHttp {
|
|
||||||
static List<String> extractScriptContents(String htmlContent) {
|
|
||||||
RegExp scriptRegExp = RegExp(r'<script>([\s\S]*?)<\/script>');
|
|
||||||
Iterable<Match> matches = scriptRegExp.allMatches(htmlContent);
|
|
||||||
List<String> scriptContents = [];
|
|
||||||
for (Match match in matches) {
|
|
||||||
String scriptContent = match.group(1)!;
|
|
||||||
scriptContents.add(scriptContent);
|
|
||||||
}
|
|
||||||
return scriptContents;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 解析专栏 opus格式
|
|
||||||
static Future parseArticleOpus({required String id}) async {
|
|
||||||
var res = await Request().get('https://www.bilibili.com/opus/$id', extra: {
|
|
||||||
'ua': 'pc',
|
|
||||||
});
|
|
||||||
String? headContent = parse(res.data).head?.outerHtml;
|
|
||||||
var document = parse(headContent);
|
|
||||||
var linkTags = document.getElementsByTagName('link');
|
|
||||||
bool isCv = false;
|
|
||||||
String cvId = '';
|
|
||||||
for (var linkTag in linkTags) {
|
|
||||||
var attributes = linkTag.attributes;
|
|
||||||
if (attributes.containsKey('rel') &&
|
|
||||||
attributes['rel'] == 'canonical' &&
|
|
||||||
attributes.containsKey('data-vue-meta') &&
|
|
||||||
attributes['data-vue-meta'] == 'true') {
|
|
||||||
final String cvHref = linkTag.attributes['href']!;
|
|
||||||
RegExp regex = RegExp(r'cv(\d+)');
|
|
||||||
RegExpMatch? match = regex.firstMatch(cvHref);
|
|
||||||
if (match != null) {
|
|
||||||
cvId = match.group(1)!;
|
|
||||||
} else {
|
|
||||||
print('No match found.');
|
|
||||||
}
|
|
||||||
isCv = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
String scriptContent =
|
|
||||||
extractScriptContents(parse(res.data).body!.outerHtml)[0];
|
|
||||||
int startIndex = scriptContent.indexOf('{');
|
|
||||||
int endIndex = scriptContent.lastIndexOf('};');
|
|
||||||
String jsonContent = scriptContent.substring(startIndex, endIndex + 1);
|
|
||||||
// 解析JSON字符串为Map
|
|
||||||
Map<String, dynamic> jsonData = json.decode(jsonContent);
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': OpusDataModel.fromJson(jsonData),
|
|
||||||
'isCv': isCv,
|
|
||||||
'cvId': cvId,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// 解析专栏 cv格式
|
|
||||||
static Future parseArticleCv({required String id}) async {
|
|
||||||
var res = await Request().get(
|
|
||||||
'https://www.bilibili.com/read/cv$id',
|
|
||||||
extra: {'ua': 'pc'},
|
|
||||||
);
|
|
||||||
String scriptContent =
|
|
||||||
extractScriptContents(parse(res.data).body!.outerHtml)[0];
|
|
||||||
int startIndex = scriptContent.indexOf('{');
|
|
||||||
int endIndex = scriptContent.lastIndexOf('};');
|
|
||||||
String jsonContent = scriptContent.substring(startIndex, endIndex + 1);
|
|
||||||
// 解析JSON字符串为Map
|
|
||||||
Map<String, dynamic> jsonData = json.decode(jsonContent);
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': ReadDataModel.fromJson(jsonData),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
|
||||||
static Future getViewInfo({required String id}) async {
|
|
||||||
Map params = await WbiSign().makSign({
|
|
||||||
'id': id,
|
|
||||||
'mobi_app': 'pc',
|
|
||||||
'from': 'web',
|
|
||||||
'gaia_source': 'main_web',
|
|
||||||
'web_location': 333.976,
|
|
||||||
});
|
|
||||||
var res = await Request().get(
|
|
||||||
Api.getViewInfo,
|
|
||||||
data: {
|
|
||||||
'id': id,
|
|
||||||
'mobi_app': 'pc',
|
|
||||||
'from': 'web',
|
|
||||||
'gaia_source': 'main_web',
|
|
||||||
'web_location': 333.976,
|
|
||||||
'w_rid': params['w_rid'],
|
|
||||||
'wts': params['wts'],
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data'],
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,5 +1,4 @@
|
|||||||
import '../models/video/reply/data.dart';
|
import '../models/video/reply/data.dart';
|
||||||
import '../models/video/reply/emote.dart';
|
|
||||||
import 'api.dart';
|
import 'api.dart';
|
||||||
import 'init.dart';
|
import 'init.dart';
|
||||||
|
|
||||||
@ -22,14 +21,19 @@ class ReplyHttp {
|
|||||||
return {
|
return {
|
||||||
'status': true,
|
'status': true,
|
||||||
'data': ReplyData.fromJson(res.data['data']),
|
'data': ReplyData.fromJson(res.data['data']),
|
||||||
'code': 200,
|
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
|
Map errMap = {
|
||||||
|
-400: '请求错误',
|
||||||
|
-404: '无此项',
|
||||||
|
12002: '当前页面评论功能已关闭',
|
||||||
|
12009: '评论主体的type不合法',
|
||||||
|
12061: 'UP主已关闭评论区',
|
||||||
|
};
|
||||||
return {
|
return {
|
||||||
'status': false,
|
'status': false,
|
||||||
'date': [],
|
'date': [],
|
||||||
'code': res.data['code'],
|
'msg': errMap[res.data['code']] ?? res.data['message'],
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -78,7 +82,7 @@ class ReplyHttp {
|
|||||||
}) async {
|
}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.likeReply,
|
Api.likeReply,
|
||||||
data: {
|
queryParameters: {
|
||||||
'type': type,
|
'type': type,
|
||||||
'oid': oid,
|
'oid': oid,
|
||||||
'rpid': rpid,
|
'rpid': rpid,
|
||||||
@ -96,44 +100,4 @@ class ReplyHttp {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future getEmoteList({String? business}) async {
|
|
||||||
var res = await Request().get(Api.emojiList, data: {
|
|
||||||
'business': business ?? 'reply',
|
|
||||||
'web_location': '333.1245',
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': EmoteModelData.fromJson(res.data['data']),
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'date': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future replyDel({
|
|
||||||
required int type, //replyType
|
|
||||||
required int oid,
|
|
||||||
required int rpid,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.replyDel,
|
|
||||||
queryParameters: {
|
|
||||||
'type': type, //type.index
|
|
||||||
'oid': oid,
|
|
||||||
'rpid': rpid,
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {'status': true, 'msg': '删除成功'};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,5 @@
|
|||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
import 'package:pilipala/models/search/all.dart';
|
|
||||||
import 'package:pilipala/utils/wbi_sign.dart';
|
|
||||||
import '../models/bangumi/info.dart';
|
import '../models/bangumi/info.dart';
|
||||||
import '../models/common/search_type.dart';
|
import '../models/common/search_type.dart';
|
||||||
import '../models/search/hot.dart';
|
import '../models/search/hot.dart';
|
||||||
@ -75,7 +73,6 @@ class SearchHttp {
|
|||||||
required page,
|
required page,
|
||||||
String? order,
|
String? order,
|
||||||
int? duration,
|
int? duration,
|
||||||
int? tids,
|
|
||||||
}) async {
|
}) async {
|
||||||
var reqData = {
|
var reqData = {
|
||||||
'search_type': searchType.type,
|
'search_type': searchType.type,
|
||||||
@ -85,14 +82,9 @@ class SearchHttp {
|
|||||||
'page': page,
|
'page': page,
|
||||||
if (order != null) 'order': order,
|
if (order != null) 'order': order,
|
||||||
if (duration != null) 'duration': duration,
|
if (duration != null) 'duration': duration,
|
||||||
if (tids != null && tids != -1) 'tids': tids,
|
|
||||||
};
|
};
|
||||||
var res = await Request().get(Api.searchByType, data: reqData);
|
var res = await Request().get(Api.searchByType, data: reqData);
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0 && res.data['data']['numPages'] > 0) {
|
||||||
if (res.data['data']['numPages'] == 0) {
|
|
||||||
// 我想返回数据,使得可以通过data.list 取值,结果为[]
|
|
||||||
return {'status': true, 'data': Data()};
|
|
||||||
}
|
|
||||||
Object data;
|
Object data;
|
||||||
try {
|
try {
|
||||||
switch (searchType) {
|
switch (searchType) {
|
||||||
@ -129,7 +121,9 @@ class SearchHttp {
|
|||||||
return {
|
return {
|
||||||
'status': false,
|
'status': false,
|
||||||
'data': [],
|
'data': [],
|
||||||
'msg': res.data['message'],
|
'msg': res.data['data'] != null && res.data['data']['numPages'] == 0
|
||||||
|
? '没有相关数据'
|
||||||
|
: res.data['message'],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -143,11 +137,7 @@ class SearchHttp {
|
|||||||
}
|
}
|
||||||
final dynamic res =
|
final dynamic res =
|
||||||
await Request().get(Api.ab2c, data: <String, dynamic>{...data});
|
await Request().get(Api.ab2c, data: <String, dynamic>{...data});
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return res.data['data'].first['cid'];
|
return res.data['data'].first['cid'];
|
||||||
} else {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<Map<String, dynamic>> bangumiInfo(
|
static Future<Map<String, dynamic>> bangumiInfo(
|
||||||
@ -173,48 +163,4 @@ class SearchHttp {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<Map<String, dynamic>> ab2cWithPic(
|
|
||||||
{int? aid, String? bvid}) async {
|
|
||||||
Map<String, dynamic> data = {};
|
|
||||||
if (aid != null) {
|
|
||||||
data['aid'] = aid;
|
|
||||||
} else if (bvid != null) {
|
|
||||||
data['bvid'] = bvid;
|
|
||||||
}
|
|
||||||
final dynamic res =
|
|
||||||
await Request().get(Api.ab2c, data: <String, dynamic>{...data});
|
|
||||||
return {
|
|
||||||
'cid': res.data['data'].first['cid'],
|
|
||||||
'pic': res.data['data'].first['first_frame'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future<Map<String, dynamic>> searchCount(
|
|
||||||
{required String keyword}) async {
|
|
||||||
Map<String, dynamic> data = {
|
|
||||||
'keyword': keyword,
|
|
||||||
'web_location': 333.999,
|
|
||||||
};
|
|
||||||
Map params = await WbiSign().makSign(data);
|
|
||||||
final dynamic res = await Request().get(Api.searchCount, data: params);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': SearchAllModel.fromJson(res.data['data']),
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': '请求错误 🙅',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Data {
|
|
||||||
List<dynamic> list;
|
|
||||||
|
|
||||||
Data({this.list = const []});
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +1,4 @@
|
|||||||
import 'dart:convert';
|
|
||||||
import 'dart:developer';
|
|
||||||
|
|
||||||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
||||||
import 'package:html/parser.dart';
|
|
||||||
import 'package:pilipala/models/video/later.dart';
|
|
||||||
import '../common/constants.dart';
|
import '../common/constants.dart';
|
||||||
import '../models/model_hot_video_item.dart';
|
import '../models/model_hot_video_item.dart';
|
||||||
import '../models/user/fav_detail.dart';
|
import '../models/user/fav_detail.dart';
|
||||||
@ -11,8 +6,6 @@ import '../models/user/fav_folder.dart';
|
|||||||
import '../models/user/history.dart';
|
import '../models/user/history.dart';
|
||||||
import '../models/user/info.dart';
|
import '../models/user/info.dart';
|
||||||
import '../models/user/stat.dart';
|
import '../models/user/stat.dart';
|
||||||
import '../models/user/sub_detail.dart';
|
|
||||||
import '../models/user/sub_folder.dart';
|
|
||||||
import 'api.dart';
|
import 'api.dart';
|
||||||
import 'init.dart';
|
import 'init.dart';
|
||||||
|
|
||||||
@ -62,15 +55,12 @@ class UserHttp {
|
|||||||
if (res.data['data'] != null) {
|
if (res.data['data'] != null) {
|
||||||
data = FavFolderData.fromJson(res.data['data']);
|
data = FavFolderData.fromJson(res.data['data']);
|
||||||
return {'status': true, 'data': data};
|
return {'status': true, 'data': data};
|
||||||
} else {
|
|
||||||
return {'status': false, 'msg': '收藏夹为空'};
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
'status': false,
|
'status': false,
|
||||||
'data': [],
|
'data': [],
|
||||||
'msg': res.data['message'],
|
'msg': res.data['message'] ?? '账号未登录'
|
||||||
'code': res.data['code'],
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -119,12 +109,7 @@ class UserHttp {
|
|||||||
'data': {'list': list, 'count': res.data['data']['count']}
|
'data': {'list': list, 'count': res.data['data']['count']}
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {'status': false, 'data': [], 'msg': res.data['message']};
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
'code': res.data['code'],
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -139,12 +124,7 @@ class UserHttp {
|
|||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {'status': true, 'data': HistoryData.fromJson(res.data['data'])};
|
return {'status': true, 'data': HistoryData.fromJson(res.data['data'])};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {'status': false, 'data': [], 'msg': res.data['message']};
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
'code': res.data['code'],
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -153,7 +133,7 @@ class UserHttp {
|
|||||||
// 暂停switchStatus传true 否则false
|
// 暂停switchStatus传true 否则false
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.pauseHistory,
|
Api.pauseHistory,
|
||||||
data: {
|
queryParameters: {
|
||||||
'switch': switchStatus,
|
'switch': switchStatus,
|
||||||
'jsonp': 'jsonp',
|
'jsonp': 'jsonp',
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
@ -172,7 +152,7 @@ class UserHttp {
|
|||||||
static Future clearHistory() async {
|
static Future clearHistory() async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.clearHistory,
|
Api.clearHistory,
|
||||||
data: {
|
queryParameters: {
|
||||||
'jsonp': 'jsonp',
|
'jsonp': 'jsonp',
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
},
|
||||||
@ -190,7 +170,7 @@ class UserHttp {
|
|||||||
}
|
}
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.toViewLater,
|
Api.toViewLater,
|
||||||
data: data,
|
queryParameters: data,
|
||||||
);
|
);
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {'status': true, 'msg': 'yeah!稍后再看'};
|
return {'status': true, 'msg': 'yeah!稍后再看'};
|
||||||
@ -209,7 +189,7 @@ class UserHttp {
|
|||||||
params[aid != null ? 'aid' : 'viewed'] = aid ?? true;
|
params[aid != null ? 'aid' : 'viewed'] = aid ?? true;
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.toViewDel,
|
Api.toViewDel,
|
||||||
data: params,
|
queryParameters: params,
|
||||||
);
|
);
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {'status': true, 'msg': 'yeah!成功移除'};
|
return {'status': true, 'msg': 'yeah!成功移除'};
|
||||||
@ -241,7 +221,7 @@ class UserHttp {
|
|||||||
static Future toViewClear() async {
|
static Future toViewClear() async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.toViewClear,
|
Api.toViewClear,
|
||||||
data: {
|
queryParameters: {
|
||||||
'jsonp': 'jsonp',
|
'jsonp': 'jsonp',
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
},
|
||||||
@ -257,7 +237,7 @@ class UserHttp {
|
|||||||
static Future delHistory(kid) async {
|
static Future delHistory(kid) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.delHistory,
|
Api.delHistory,
|
||||||
data: {
|
queryParameters: {
|
||||||
'kid': kid,
|
'kid': kid,
|
||||||
'jsonp': 'jsonp',
|
'jsonp': 'jsonp',
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
@ -325,216 +305,4 @@ class UserHttp {
|
|||||||
return {'status': false, 'msg': res.data['message']};
|
return {'status': false, 'msg': res.data['message']};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 我的订阅
|
|
||||||
static Future userSubFolder({
|
|
||||||
required int mid,
|
|
||||||
required int pn,
|
|
||||||
required int ps,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().get(Api.userSubFolder, data: {
|
|
||||||
'up_mid': mid,
|
|
||||||
'ps': ps,
|
|
||||||
'pn': pn,
|
|
||||||
'platform': 'web',
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': SubFolderModelData.fromJson(res.data['data'])
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
|
||||||
'status': false,
|
|
||||||
'data': [],
|
|
||||||
'msg': res.data['message'],
|
|
||||||
'code': res.data['code'],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future userSeasonList({
|
|
||||||
required int seasonId,
|
|
||||||
required int pn,
|
|
||||||
required int ps,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().get(Api.userSeasonList, data: {
|
|
||||||
'season_id': seasonId,
|
|
||||||
'ps': ps,
|
|
||||||
'pn': pn,
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': SubDetailModelData.fromJson(res.data['data'])
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future userResourceList({
|
|
||||||
required int seasonId,
|
|
||||||
required int pn,
|
|
||||||
required int ps,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().get(Api.userResourceList, data: {
|
|
||||||
'media_id': seasonId,
|
|
||||||
'ps': ps,
|
|
||||||
'pn': pn,
|
|
||||||
'keyword': '',
|
|
||||||
'order': 'mtime',
|
|
||||||
'type': 0,
|
|
||||||
'tid': 0,
|
|
||||||
'platform': 'web',
|
|
||||||
});
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
try {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': SubDetailModelData.fromJson(res.data['data'])
|
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
return {'status': false, 'msg': err};
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 取消订阅
|
|
||||||
static Future cancelSub({required int seasonId}) async {
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.cancelSub,
|
|
||||||
data: {
|
|
||||||
'platform': 'web',
|
|
||||||
'season_id': seasonId,
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {'status': true};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 删除文件夹
|
|
||||||
static Future delFavFolder({required int mediaIds}) async {
|
|
||||||
var res = await Request().post(
|
|
||||||
Api.delFavFolder,
|
|
||||||
data: {
|
|
||||||
'media_ids': mediaIds,
|
|
||||||
'platform': 'web',
|
|
||||||
'csrf': await Request.getCsrf(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {'status': true};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 稍后再看播放全部
|
|
||||||
// static Future toViewPlayAll({required int oid, required String bvid}) async {
|
|
||||||
// var res = await Request().get(
|
|
||||||
// Api.watchLaterHtml,
|
|
||||||
// data: {
|
|
||||||
// 'oid': oid,
|
|
||||||
// 'bvid': bvid,
|
|
||||||
// },
|
|
||||||
// );
|
|
||||||
// String scriptContent =
|
|
||||||
// extractScriptContents(parse(res.data).body!.outerHtml)[0];
|
|
||||||
// int startIndex = scriptContent.indexOf('{');
|
|
||||||
// int endIndex = scriptContent.lastIndexOf('};');
|
|
||||||
// String jsonContent = scriptContent.substring(startIndex, endIndex + 1);
|
|
||||||
// // 解析JSON字符串为Map
|
|
||||||
// Map<String, dynamic> jsonData = json.decode(jsonContent);
|
|
||||||
// // 输出解析后的数据
|
|
||||||
// return {
|
|
||||||
// 'status': true,
|
|
||||||
// 'data': jsonData['resourceList']
|
|
||||||
// .map((e) => MediaVideoItemModel.fromJson(e))
|
|
||||||
// .toList()
|
|
||||||
// };
|
|
||||||
// }
|
|
||||||
|
|
||||||
static List<String> extractScriptContents(String htmlContent) {
|
|
||||||
RegExp scriptRegExp = RegExp(r'<script>([\s\S]*?)<\/script>');
|
|
||||||
Iterable<Match> matches = scriptRegExp.allMatches(htmlContent);
|
|
||||||
List<String> scriptContents = [];
|
|
||||||
for (Match match in matches) {
|
|
||||||
String scriptContent = match.group(1)!;
|
|
||||||
scriptContents.add(scriptContent);
|
|
||||||
}
|
|
||||||
return scriptContents;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 稍后再看列表
|
|
||||||
static Future getMediaList({
|
|
||||||
required int type,
|
|
||||||
required int bizId,
|
|
||||||
required int ps,
|
|
||||||
int? oid,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().get(
|
|
||||||
Api.mediaList,
|
|
||||||
data: {
|
|
||||||
'mobi_app': 'web',
|
|
||||||
'type': type,
|
|
||||||
'biz_id': bizId,
|
|
||||||
'oid': oid ?? '',
|
|
||||||
'otype': 2,
|
|
||||||
'ps': ps,
|
|
||||||
'direction': false,
|
|
||||||
'desc': true,
|
|
||||||
'sort_field': 1,
|
|
||||||
'tid': 0,
|
|
||||||
'with_current': false,
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': res.data['data']['media_list'] != null
|
|
||||||
? res.data['data']['media_list']
|
|
||||||
.map<MediaVideoItemModel>(
|
|
||||||
(e) => MediaVideoItemModel.fromJson(e))
|
|
||||||
.toList()
|
|
||||||
: []
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 解析收藏夹视频
|
|
||||||
static Future parseFavVideo({
|
|
||||||
required int mediaId,
|
|
||||||
required int oid,
|
|
||||||
required String bvid,
|
|
||||||
}) async {
|
|
||||||
var res = await Request().get(
|
|
||||||
'https://www.bilibili.com/list/ml$mediaId',
|
|
||||||
data: {
|
|
||||||
'oid': mediaId,
|
|
||||||
'bvid': bvid,
|
|
||||||
},
|
|
||||||
);
|
|
||||||
String scriptContent =
|
|
||||||
extractScriptContents(parse(res.data).body!.outerHtml)[0];
|
|
||||||
int startIndex = scriptContent.indexOf('{');
|
|
||||||
int endIndex = scriptContent.lastIndexOf('};');
|
|
||||||
String jsonContent = scriptContent.substring(startIndex, endIndex + 1);
|
|
||||||
// 解析JSON字符串为Map
|
|
||||||
Map<String, dynamic> jsonData = json.decode(jsonContent);
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': jsonData['resourceList']
|
|
||||||
.map<MediaVideoItemModel>((e) => MediaVideoItemModel.fromJson(e))
|
|
||||||
.toList()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,11 +8,8 @@ import '../models/model_rec_video_item.dart';
|
|||||||
import '../models/user/fav_folder.dart';
|
import '../models/user/fav_folder.dart';
|
||||||
import '../models/video/ai.dart';
|
import '../models/video/ai.dart';
|
||||||
import '../models/video/play/url.dart';
|
import '../models/video/play/url.dart';
|
||||||
import '../models/video/subTitile/result.dart';
|
|
||||||
import '../models/video_detail_res.dart';
|
import '../models/video_detail_res.dart';
|
||||||
import '../utils/recommend_filter.dart';
|
|
||||||
import '../utils/storage.dart';
|
import '../utils/storage.dart';
|
||||||
import '../utils/subtitle.dart';
|
|
||||||
import '../utils/wbi_sign.dart';
|
import '../utils/wbi_sign.dart';
|
||||||
import 'api.dart';
|
import 'api.dart';
|
||||||
import 'init.dart';
|
import 'init.dart';
|
||||||
@ -35,7 +32,7 @@ class VideoHttp {
|
|||||||
Api.recommendListWeb,
|
Api.recommendListWeb,
|
||||||
data: {
|
data: {
|
||||||
'version': 1,
|
'version': 1,
|
||||||
'feed_version': 'V3',
|
'feed_version': 'V8',
|
||||||
'homepage_ver': 1,
|
'homepage_ver': 1,
|
||||||
'ps': ps,
|
'ps': ps,
|
||||||
'fresh_idx': freshIdx,
|
'fresh_idx': freshIdx,
|
||||||
@ -49,13 +46,8 @@ class VideoHttp {
|
|||||||
setting.get(SettingBoxKey.blackMidsList, defaultValue: [-1]);
|
setting.get(SettingBoxKey.blackMidsList, defaultValue: [-1]);
|
||||||
for (var i in res.data['data']['item']) {
|
for (var i in res.data['data']['item']) {
|
||||||
//过滤掉live与ad,以及拉黑用户
|
//过滤掉live与ad,以及拉黑用户
|
||||||
if (i['goto'] == 'av' &&
|
if (i['goto'] == 'av' && !blackMidsList.contains(i['owner']['mid'])) {
|
||||||
(i['owner'] != null &&
|
list.add(RecVideoItemModel.fromJson(i));
|
||||||
!blackMidsList.contains(i['owner']['mid']))) {
|
|
||||||
RecVideoItemModel videoItem = RecVideoItemModel.fromJson(i);
|
|
||||||
if (!RecommendFilter.filter(videoItem)) {
|
|
||||||
list.add(videoItem);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return {'status': true, 'data': list};
|
return {'status': true, 'data': list};
|
||||||
@ -67,9 +59,8 @@ class VideoHttp {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 添加额外的loginState变量模拟未登录状态
|
static Future rcmdVideoListApp({int? ps, required int freshIdx}) async {
|
||||||
static Future rcmdVideoListApp(
|
try {
|
||||||
{bool loginStatus = true, required int freshIdx}) async {
|
|
||||||
var res = await Request().get(
|
var res = await Request().get(
|
||||||
Api.recommendListApp,
|
Api.recommendListApp,
|
||||||
data: {
|
data: {
|
||||||
@ -81,11 +72,9 @@ class VideoHttp {
|
|||||||
'device_name': 'vivo',
|
'device_name': 'vivo',
|
||||||
'pull': freshIdx == 0 ? 'true' : 'false',
|
'pull': freshIdx == 0 ? 'true' : 'false',
|
||||||
'appkey': Constants.appKey,
|
'appkey': Constants.appKey,
|
||||||
'access_key': loginStatus
|
'access_key': localCache
|
||||||
? (localCache
|
|
||||||
.get(LocalCacheKey.accessKey, defaultValue: {})['value'] ??
|
.get(LocalCacheKey.accessKey, defaultValue: {})['value'] ??
|
||||||
'')
|
''
|
||||||
: ''
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
@ -98,15 +87,15 @@ class VideoHttp {
|
|||||||
(!enableRcmdDynamic ? i['card_goto'] != 'picture' : true) &&
|
(!enableRcmdDynamic ? i['card_goto'] != 'picture' : true) &&
|
||||||
(i['args'] != null &&
|
(i['args'] != null &&
|
||||||
!blackMidsList.contains(i['args']['up_mid']))) {
|
!blackMidsList.contains(i['args']['up_mid']))) {
|
||||||
RecVideoItemAppModel videoItem = RecVideoItemAppModel.fromJson(i);
|
list.add(RecVideoItemAppModel.fromJson(i));
|
||||||
if (!RecommendFilter.filter(videoItem)) {
|
|
||||||
list.add(videoItem);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return {'status': true, 'data': list};
|
return {'status': true, 'data': list};
|
||||||
} else {
|
} else {
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
return {'status': false, 'data': [], 'msg': ''};
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
return {'status': false, 'data': [], 'msg': err.toString()};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,7 +117,7 @@ class VideoHttp {
|
|||||||
}
|
}
|
||||||
return {'status': true, 'data': list};
|
return {'status': true, 'data': list};
|
||||||
} else {
|
} else {
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
return {'status': false, 'data': []};
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return {'status': false, 'data': [], 'msg': err};
|
return {'status': false, 'data': [], 'msg': err};
|
||||||
@ -188,15 +177,22 @@ class VideoHttp {
|
|||||||
// 视频信息 标题、简介
|
// 视频信息 标题、简介
|
||||||
static Future videoIntro({required String bvid}) async {
|
static Future videoIntro({required String bvid}) async {
|
||||||
var res = await Request().get(Api.videoIntro, data: {'bvid': bvid});
|
var res = await Request().get(Api.videoIntro, data: {'bvid': bvid});
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
VideoDetailResponse result = VideoDetailResponse.fromJson(res.data);
|
VideoDetailResponse result = VideoDetailResponse.fromJson(res.data);
|
||||||
|
if (result.code == 0) {
|
||||||
return {'status': true, 'data': result.data!};
|
return {'status': true, 'data': result.data!};
|
||||||
} else {
|
} else {
|
||||||
|
Map errMap = {
|
||||||
|
-400: '请求错误',
|
||||||
|
-403: '权限不足',
|
||||||
|
-404: '视频资源失效',
|
||||||
|
62002: '稿件不可见',
|
||||||
|
62004: '稿件审核中',
|
||||||
|
};
|
||||||
return {
|
return {
|
||||||
'status': false,
|
'status': false,
|
||||||
'data': null,
|
'data': null,
|
||||||
'code': res.data['code'],
|
'code': result.code,
|
||||||
'msg': res.data['message'],
|
'msg': errMap[result.code] ?? '请求异常',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -207,10 +203,7 @@ class VideoHttp {
|
|||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
List<HotVideoItemModel> list = [];
|
List<HotVideoItemModel> list = [];
|
||||||
for (var i in res.data['data']) {
|
for (var i in res.data['data']) {
|
||||||
HotVideoItemModel videoItem = HotVideoItemModel.fromJson(i);
|
list.add(HotVideoItemModel.fromJson(i));
|
||||||
if (!RecommendFilter.filter(videoItem, relatedVideos: true)) {
|
|
||||||
list.add(videoItem);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return {'status': true, 'data': list};
|
return {'status': true, 'data': list};
|
||||||
} else {
|
} else {
|
||||||
@ -243,7 +236,7 @@ class VideoHttp {
|
|||||||
static Future coinVideo({required String bvid, required int multiply}) async {
|
static Future coinVideo({required String bvid, required int multiply}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.coinVideo,
|
Api.coinVideo,
|
||||||
data: {
|
queryParameters: {
|
||||||
'bvid': bvid,
|
'bvid': bvid,
|
||||||
'multiply': multiply,
|
'multiply': multiply,
|
||||||
'select_like': 0,
|
'select_like': 0,
|
||||||
@ -271,7 +264,7 @@ class VideoHttp {
|
|||||||
static Future oneThree({required String bvid}) async {
|
static Future oneThree({required String bvid}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.oneThree,
|
Api.oneThree,
|
||||||
data: {
|
queryParameters: {
|
||||||
'bvid': bvid,
|
'bvid': bvid,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
},
|
||||||
@ -287,7 +280,7 @@ class VideoHttp {
|
|||||||
static Future likeVideo({required String bvid, required bool type}) async {
|
static Future likeVideo({required String bvid, required bool type}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(
|
||||||
Api.likeVideo,
|
Api.likeVideo,
|
||||||
data: {
|
queryParameters: {
|
||||||
'bvid': bvid,
|
'bvid': bvid,
|
||||||
'like': type ? 1 : 2,
|
'like': type ? 1 : 2,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
@ -303,20 +296,17 @@ class VideoHttp {
|
|||||||
// (取消)收藏
|
// (取消)收藏
|
||||||
static Future favVideo(
|
static Future favVideo(
|
||||||
{required int aid, String? addIds, String? delIds}) async {
|
{required int aid, String? addIds, String? delIds}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(Api.favVideo, queryParameters: {
|
||||||
Api.favVideo,
|
|
||||||
data: {
|
|
||||||
'rid': aid,
|
'rid': aid,
|
||||||
'type': 2,
|
'type': 2,
|
||||||
'add_media_ids': addIds ?? '',
|
'add_media_ids': addIds ?? '',
|
||||||
'del_media_ids': delIds ?? '',
|
'del_media_ids': delIds ?? '',
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
});
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {'status': true, 'data': res.data['data']};
|
return {'status': true, 'data': res.data['data']};
|
||||||
} else {
|
} else {
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
return {'status': false, 'data': []};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -350,17 +340,14 @@ class VideoHttp {
|
|||||||
if (message == '') {
|
if (message == '') {
|
||||||
return {'status': false, 'data': [], 'msg': '请输入评论内容'};
|
return {'status': false, 'data': [], 'msg': '请输入评论内容'};
|
||||||
}
|
}
|
||||||
var res = await Request().post(
|
var res = await Request().post(Api.replyAdd, queryParameters: {
|
||||||
Api.replyAdd,
|
|
||||||
data: {
|
|
||||||
'type': type.index,
|
'type': type.index,
|
||||||
'oid': oid,
|
'oid': oid,
|
||||||
'root': root == null || root == 0 ? '' : root,
|
'root': root == null || root == 0 ? '' : root,
|
||||||
'parent': parent == null || parent == 0 ? '' : parent,
|
'parent': parent == null || parent == 0 ? '' : parent,
|
||||||
'message': message,
|
'message': message,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
});
|
||||||
);
|
|
||||||
log(res.toString());
|
log(res.toString());
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {'status': true, 'data': res.data['data']};
|
return {'status': true, 'data': res.data['data']};
|
||||||
@ -382,33 +369,22 @@ class VideoHttp {
|
|||||||
// 操作用户关系
|
// 操作用户关系
|
||||||
static Future relationMod(
|
static Future relationMod(
|
||||||
{required int mid, required int act, required int reSrc}) async {
|
{required int mid, required int act, required int reSrc}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(Api.relationMod, queryParameters: {
|
||||||
Api.relationMod,
|
|
||||||
data: {
|
|
||||||
'fid': mid,
|
'fid': mid,
|
||||||
'act': act,
|
'act': act,
|
||||||
're_src': reSrc,
|
're_src': reSrc,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
});
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
if (act == 5) {
|
return {'status': true, 'data': res.data['data']};
|
||||||
List<int> blackMidsList =
|
|
||||||
setting.get(SettingBoxKey.blackMidsList, defaultValue: [-1]);
|
|
||||||
blackMidsList.add(mid);
|
|
||||||
setting.put(SettingBoxKey.blackMidsList, blackMidsList);
|
|
||||||
}
|
|
||||||
return {'status': true, 'data': res.data['data'], 'msg': '成功'};
|
|
||||||
} else {
|
} else {
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
return {'status': false, 'data': []};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 视频播放进度
|
// 视频播放进度
|
||||||
static Future heartBeat({bvid, cid, progress, realtime}) async {
|
static Future heartBeat({bvid, cid, progress, realtime}) async {
|
||||||
await Request().post(
|
await Request().post(Api.heartBeat, queryParameters: {
|
||||||
Api.heartBeat,
|
|
||||||
data: {
|
|
||||||
// 'aid': aid,
|
// 'aid': aid,
|
||||||
'bvid': bvid,
|
'bvid': bvid,
|
||||||
'cid': cid,
|
'cid': cid,
|
||||||
@ -420,19 +396,15 @@ class VideoHttp {
|
|||||||
// 'type': '',
|
// 'type': '',
|
||||||
// 'sub_type': '',
|
// 'sub_type': '',
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
});
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 添加追番
|
// 添加追番
|
||||||
static Future bangumiAdd({int? seasonId}) async {
|
static Future bangumiAdd({int? seasonId}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(Api.bangumiAdd, queryParameters: {
|
||||||
Api.bangumiAdd,
|
|
||||||
data: {
|
|
||||||
'season_id': seasonId,
|
'season_id': seasonId,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
});
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {'status': true, 'msg': res.data['result']['toast']};
|
return {'status': true, 'msg': res.data['result']['toast']};
|
||||||
} else {
|
} else {
|
||||||
@ -442,13 +414,10 @@ class VideoHttp {
|
|||||||
|
|
||||||
// 取消追番
|
// 取消追番
|
||||||
static Future bangumiDel({int? seasonId}) async {
|
static Future bangumiDel({int? seasonId}) async {
|
||||||
var res = await Request().post(
|
var res = await Request().post(Api.bangumiDel, queryParameters: {
|
||||||
Api.bangumiDel,
|
|
||||||
data: {
|
|
||||||
'season_id': seasonId,
|
'season_id': seasonId,
|
||||||
'csrf': await Request.getCsrf(),
|
'csrf': await Request.getCsrf(),
|
||||||
},
|
});
|
||||||
);
|
|
||||||
if (res.data['code'] == 0) {
|
if (res.data['code'] == 0) {
|
||||||
return {'status': true, 'msg': res.data['result']['toast']};
|
return {'status': true, 'msg': res.data['result']['toast']};
|
||||||
} else {
|
} else {
|
||||||
@ -490,55 +459,4 @@ class VideoHttp {
|
|||||||
return {'status': false, 'data': []};
|
return {'status': false, 'data': []};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future getSubtitle({int? cid, String? bvid}) async {
|
|
||||||
var res = await Request().get(Api.getSubtitleConfig, data: {
|
|
||||||
'cid': cid,
|
|
||||||
'bvid': bvid,
|
|
||||||
});
|
|
||||||
try {
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
return {
|
|
||||||
'status': true,
|
|
||||||
'data': SubTitlteModel.fromJson(res.data['data']),
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'data': [], 'msg': res.data['msg']};
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
return {'status': false, 'data': [], 'msg': res.data['msg']};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 视频排行
|
|
||||||
static Future getRankVideoList(int rid) async {
|
|
||||||
try {
|
|
||||||
var rankApi = "${Api.getRankApi}?rid=$rid&type=all";
|
|
||||||
var res = await Request().get(rankApi);
|
|
||||||
if (res.data['code'] == 0) {
|
|
||||||
List<HotVideoItemModel> list = [];
|
|
||||||
List<int> blackMidsList =
|
|
||||||
setting.get(SettingBoxKey.blackMidsList, defaultValue: [-1]);
|
|
||||||
for (var i in res.data['data']['list']) {
|
|
||||||
if (!blackMidsList.contains(i['owner']['mid'])) {
|
|
||||||
list.add(HotVideoItemModel.fromJson(i));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return {'status': true, 'data': list};
|
|
||||||
} else {
|
|
||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
return {'status': false, 'data': [], 'msg': err};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获取字幕内容
|
|
||||||
static Future<Map<String, dynamic>> getSubtitleContent(url) async {
|
|
||||||
var res = await Request().get('https:$url');
|
|
||||||
final String content =
|
|
||||||
await SubTitleUtils.convertToWebVTT(res.data['body']);
|
|
||||||
final List body = res.data['body'];
|
|
||||||
return {'content': content, 'body': body};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
162
lib/main.dart
162
lib/main.dart
@ -1,6 +1,5 @@
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:device_info_plus/device_info_plus.dart';
|
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:flutter_displaymode/flutter_displaymode.dart';
|
import 'package:flutter_displaymode/flutter_displaymode.dart';
|
||||||
import 'package:flutter_localizations/flutter_localizations.dart';
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
||||||
@ -20,30 +19,41 @@ import 'package:pilipala/pages/main/view.dart';
|
|||||||
import 'package:pilipala/services/service_locator.dart';
|
import 'package:pilipala/services/service_locator.dart';
|
||||||
import 'package:pilipala/utils/app_scheme.dart';
|
import 'package:pilipala/utils/app_scheme.dart';
|
||||||
import 'package:pilipala/utils/data.dart';
|
import 'package:pilipala/utils/data.dart';
|
||||||
import 'package:pilipala/utils/global_data_cache.dart';
|
|
||||||
import 'package:pilipala/utils/storage.dart';
|
import 'package:pilipala/utils/storage.dart';
|
||||||
import 'package:media_kit/media_kit.dart';
|
import 'package:media_kit/media_kit.dart'; // Provides [Player], [Media], [Playlist] etc.
|
||||||
import 'package:pilipala/utils/recommend_filter.dart';
|
|
||||||
import 'package:catcher_2/catcher_2.dart';
|
import 'package:catcher_2/catcher_2.dart';
|
||||||
import './services/loggeer.dart';
|
import './services/loggeer.dart';
|
||||||
|
|
||||||
void main() async {
|
void main() async {
|
||||||
WidgetsFlutterBinding.ensureInitialized();
|
WidgetsFlutterBinding.ensureInitialized();
|
||||||
MediaKit.ensureInitialized();
|
MediaKit.ensureInitialized();
|
||||||
await SystemChrome.setPreferredOrientations(
|
SystemChrome.setPreferredOrientations(
|
||||||
[DeviceOrientation.portraitUp, DeviceOrientation.portraitDown]);
|
[DeviceOrientation.portraitUp, DeviceOrientation.portraitDown])
|
||||||
|
.then((_) async {
|
||||||
await GStrorage.init();
|
await GStrorage.init();
|
||||||
clearLogs();
|
await setupServiceLocator();
|
||||||
Request();
|
Request();
|
||||||
await Request.setCookie();
|
await Request.setCookie();
|
||||||
|
|
||||||
// 异常捕获 logo记录
|
// 异常捕获 logo记录
|
||||||
|
final Catcher2Options debugConfig = Catcher2Options(
|
||||||
|
SilentReportMode(),
|
||||||
|
[
|
||||||
|
FileHandler(await getLogsPath()),
|
||||||
|
ConsoleHandler(
|
||||||
|
enableDeviceParameters: false,
|
||||||
|
enableApplicationParameters: false,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
|
||||||
final Catcher2Options releaseConfig = Catcher2Options(
|
final Catcher2Options releaseConfig = Catcher2Options(
|
||||||
SilentReportMode(),
|
SilentReportMode(),
|
||||||
[FileHandler(await getLogsPath())],
|
[FileHandler(await getLogsPath())],
|
||||||
);
|
);
|
||||||
|
|
||||||
Catcher2(
|
Catcher2(
|
||||||
|
debugConfig: debugConfig,
|
||||||
releaseConfig: releaseConfig,
|
releaseConfig: releaseConfig,
|
||||||
runAppFunction: () {
|
runAppFunction: () {
|
||||||
runApp(const MyApp());
|
runApp(const MyApp());
|
||||||
@ -51,20 +61,16 @@ void main() async {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// 小白条、导航栏沉浸
|
// 小白条、导航栏沉浸
|
||||||
if (Platform.isAndroid) {
|
|
||||||
final androidInfo = await DeviceInfoPlugin().androidInfo;
|
|
||||||
if (androidInfo.version.sdkInt >= 29) {
|
|
||||||
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
|
||||||
}
|
|
||||||
SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
|
SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
|
||||||
systemNavigationBarColor: Colors.transparent,
|
systemNavigationBarColor: Colors.transparent,
|
||||||
systemNavigationBarDividerColor: Colors.transparent,
|
systemNavigationBarDividerColor: Colors.transparent,
|
||||||
statusBarColor: Colors.transparent,
|
statusBarColor: Colors.transparent,
|
||||||
));
|
));
|
||||||
}
|
Data.init();
|
||||||
|
GStrorage.lazyInit();
|
||||||
PiliSchame.init();
|
PiliSchame.init();
|
||||||
await GlobalDataCache().initialize();
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
class MyApp extends StatelessWidget {
|
class MyApp extends StatelessWidget {
|
||||||
@ -105,39 +111,6 @@ class MyApp extends StatelessWidget {
|
|||||||
} catch (_) {}
|
} catch (_) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Platform.isAndroid) {
|
|
||||||
return AndroidApp(
|
|
||||||
brandColor: brandColor,
|
|
||||||
isDynamicColor: isDynamicColor,
|
|
||||||
currentThemeValue: currentThemeValue,
|
|
||||||
textScale: textScale,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
return OtherApp(
|
|
||||||
brandColor: brandColor,
|
|
||||||
currentThemeValue: currentThemeValue,
|
|
||||||
textScale: textScale,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class AndroidApp extends StatelessWidget {
|
|
||||||
const AndroidApp({
|
|
||||||
super.key,
|
|
||||||
required this.brandColor,
|
|
||||||
required this.isDynamicColor,
|
|
||||||
required this.currentThemeValue,
|
|
||||||
required this.textScale,
|
|
||||||
});
|
|
||||||
|
|
||||||
final Color brandColor;
|
|
||||||
final bool isDynamicColor;
|
|
||||||
final ThemeType currentThemeValue;
|
|
||||||
final double textScale;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return DynamicColorBuilder(
|
return DynamicColorBuilder(
|
||||||
builder: ((ColorScheme? lightDynamic, ColorScheme? darkDynamic) {
|
builder: ((ColorScheme? lightDynamic, ColorScheme? darkDynamic) {
|
||||||
ColorScheme? lightColorScheme;
|
ColorScheme? lightColorScheme;
|
||||||
@ -157,77 +130,23 @@ class AndroidApp extends StatelessWidget {
|
|||||||
brightness: Brightness.dark,
|
brightness: Brightness.dark,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return BuildMainApp(
|
// 图片缓存
|
||||||
lightColorScheme: lightColorScheme,
|
// PaintingBinding.instance.imageCache.maximumSizeBytes = 1000 << 20;
|
||||||
darkColorScheme: darkColorScheme,
|
return GetMaterialApp(
|
||||||
currentThemeValue: currentThemeValue,
|
title: 'PiLiPaLa',
|
||||||
textScale: textScale,
|
theme: ThemeData(
|
||||||
);
|
// fontFamily: 'HarmonyOS',
|
||||||
}),
|
colorScheme: currentThemeValue == ThemeType.dark
|
||||||
);
|
? darkColorScheme
|
||||||
}
|
: lightColorScheme,
|
||||||
}
|
useMaterial3: true,
|
||||||
|
snackBarTheme: SnackBarThemeData(
|
||||||
class OtherApp extends StatelessWidget {
|
|
||||||
const OtherApp({
|
|
||||||
super.key,
|
|
||||||
required this.brandColor,
|
|
||||||
required this.currentThemeValue,
|
|
||||||
required this.textScale,
|
|
||||||
});
|
|
||||||
|
|
||||||
final Color brandColor;
|
|
||||||
final ThemeType currentThemeValue;
|
|
||||||
final double textScale;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return BuildMainApp(
|
|
||||||
lightColorScheme: ColorScheme.fromSeed(
|
|
||||||
seedColor: brandColor,
|
|
||||||
brightness: Brightness.light,
|
|
||||||
),
|
|
||||||
darkColorScheme: ColorScheme.fromSeed(
|
|
||||||
seedColor: brandColor,
|
|
||||||
brightness: Brightness.dark,
|
|
||||||
),
|
|
||||||
currentThemeValue: currentThemeValue,
|
|
||||||
textScale: textScale,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class BuildMainApp extends StatelessWidget {
|
|
||||||
const BuildMainApp({
|
|
||||||
super.key,
|
|
||||||
required this.lightColorScheme,
|
|
||||||
required this.darkColorScheme,
|
|
||||||
required this.currentThemeValue,
|
|
||||||
required this.textScale,
|
|
||||||
});
|
|
||||||
|
|
||||||
final ColorScheme lightColorScheme;
|
|
||||||
final ColorScheme darkColorScheme;
|
|
||||||
final ThemeType currentThemeValue;
|
|
||||||
final double textScale;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
final SnackBarThemeData snackBarTheme = SnackBarThemeData(
|
|
||||||
actionTextColor: lightColorScheme.primary,
|
actionTextColor: lightColorScheme.primary,
|
||||||
backgroundColor: lightColorScheme.secondaryContainer,
|
backgroundColor: lightColorScheme.secondaryContainer,
|
||||||
closeIconColor: lightColorScheme.secondary,
|
closeIconColor: lightColorScheme.secondary,
|
||||||
contentTextStyle: TextStyle(color: lightColorScheme.secondary),
|
contentTextStyle: TextStyle(color: lightColorScheme.secondary),
|
||||||
elevation: 20,
|
elevation: 20,
|
||||||
);
|
),
|
||||||
|
|
||||||
return GetMaterialApp(
|
|
||||||
title: 'PiliPala',
|
|
||||||
theme: ThemeData(
|
|
||||||
colorScheme: currentThemeValue == ThemeType.dark
|
|
||||||
? darkColorScheme
|
|
||||||
: lightColorScheme,
|
|
||||||
snackBarTheme: snackBarTheme,
|
|
||||||
pageTransitionsTheme: const PageTransitionsTheme(
|
pageTransitionsTheme: const PageTransitionsTheme(
|
||||||
builders: <TargetPlatform, PageTransitionsBuilder>{
|
builders: <TargetPlatform, PageTransitionsBuilder>{
|
||||||
TargetPlatform.android: ZoomPageTransitionsBuilder(
|
TargetPlatform.android: ZoomPageTransitionsBuilder(
|
||||||
@ -237,10 +156,18 @@ class BuildMainApp extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
darkTheme: ThemeData(
|
darkTheme: ThemeData(
|
||||||
|
// fontFamily: 'HarmonyOS',
|
||||||
colorScheme: currentThemeValue == ThemeType.light
|
colorScheme: currentThemeValue == ThemeType.light
|
||||||
? lightColorScheme
|
? lightColorScheme
|
||||||
: darkColorScheme,
|
: darkColorScheme,
|
||||||
snackBarTheme: snackBarTheme,
|
useMaterial3: true,
|
||||||
|
snackBarTheme: SnackBarThemeData(
|
||||||
|
actionTextColor: darkColorScheme.primary,
|
||||||
|
backgroundColor: darkColorScheme.secondaryContainer,
|
||||||
|
closeIconColor: darkColorScheme.secondary,
|
||||||
|
contentTextStyle: TextStyle(color: darkColorScheme.secondary),
|
||||||
|
elevation: 20,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
localizationsDelegates: const [
|
localizationsDelegates: const [
|
||||||
GlobalCupertinoLocalizations.delegate,
|
GlobalCupertinoLocalizations.delegate,
|
||||||
@ -266,11 +193,8 @@ class BuildMainApp extends StatelessWidget {
|
|||||||
VideoDetailPage.routeObserver,
|
VideoDetailPage.routeObserver,
|
||||||
SearchPage.routeObserver,
|
SearchPage.routeObserver,
|
||||||
],
|
],
|
||||||
onReady: () async {
|
);
|
||||||
RecommendFilter();
|
}),
|
||||||
Data.init();
|
|
||||||
setupServiceLocator();
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,7 +30,6 @@ class BangumiListItemModel {
|
|||||||
BangumiListItemModel({
|
BangumiListItemModel({
|
||||||
this.badge,
|
this.badge,
|
||||||
this.badgeType,
|
this.badgeType,
|
||||||
this.pic,
|
|
||||||
this.cover,
|
this.cover,
|
||||||
// this.firstEp,
|
// this.firstEp,
|
||||||
this.indexShow,
|
this.indexShow,
|
||||||
@ -51,7 +50,6 @@ class BangumiListItemModel {
|
|||||||
|
|
||||||
String? badge;
|
String? badge;
|
||||||
int? badgeType;
|
int? badgeType;
|
||||||
String? pic;
|
|
||||||
String? cover;
|
String? cover;
|
||||||
String? indexShow;
|
String? indexShow;
|
||||||
int? isFinish;
|
int? isFinish;
|
||||||
@ -72,7 +70,6 @@ class BangumiListItemModel {
|
|||||||
BangumiListItemModel.fromJson(Map<String, dynamic> json) {
|
BangumiListItemModel.fromJson(Map<String, dynamic> json) {
|
||||||
badge = json['badge'] == '' ? null : json['badge'];
|
badge = json['badge'] == '' ? null : json['badge'];
|
||||||
badgeType = json['badge_type'];
|
badgeType = json['badge_type'];
|
||||||
pic = json['cover'];
|
|
||||||
cover = json['cover'];
|
cover = json['cover'];
|
||||||
indexShow = json['index_show'];
|
indexShow = json['index_show'];
|
||||||
isFinish = json['is_finish'];
|
isFinish = json['is_finish'];
|
||||||
|
|||||||
@ -1,93 +0,0 @@
|
|||||||
// 操作类型的枚举值:点赞 不喜欢 收藏 投币 稍后再看 下载封面 后台播放 听视频 分享 下载视频
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:get/get.dart';
|
|
||||||
|
|
||||||
enum ActionType {
|
|
||||||
like,
|
|
||||||
coin,
|
|
||||||
collect,
|
|
||||||
watchLater,
|
|
||||||
share,
|
|
||||||
dislike,
|
|
||||||
downloadCover,
|
|
||||||
copyLink,
|
|
||||||
// backgroundPlay,
|
|
||||||
// listenVideo,
|
|
||||||
// downloadVideo,
|
|
||||||
}
|
|
||||||
|
|
||||||
extension ActionTypeExtension on ActionType {
|
|
||||||
String get value => [
|
|
||||||
'like',
|
|
||||||
'coin',
|
|
||||||
'collect',
|
|
||||||
'watchLater',
|
|
||||||
'share',
|
|
||||||
'dislike',
|
|
||||||
'downloadCover',
|
|
||||||
'copyLink',
|
|
||||||
// 'backgroundPlay',
|
|
||||||
// 'listenVideo',
|
|
||||||
// 'downloadVideo',
|
|
||||||
][index];
|
|
||||||
String get label => [
|
|
||||||
'点赞视频',
|
|
||||||
'投币',
|
|
||||||
'收藏视频',
|
|
||||||
'稍后再看',
|
|
||||||
'视频分享',
|
|
||||||
'不喜欢',
|
|
||||||
'下载封面',
|
|
||||||
'复制链接',
|
|
||||||
// '后台播放',
|
|
||||||
// '听视频',
|
|
||||||
// '下载视频',
|
|
||||||
][index];
|
|
||||||
}
|
|
||||||
|
|
||||||
List<Map> actionMenuConfig = [
|
|
||||||
{
|
|
||||||
'icon': const Icon(Icons.thumb_up_alt_outlined),
|
|
||||||
'label': '点赞视频',
|
|
||||||
'value': ActionType.like,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': Image.asset(
|
|
||||||
'assets/images/coin.png',
|
|
||||||
width: 26,
|
|
||||||
color: IconTheme.of(Get.context!).color!.withOpacity(0.65),
|
|
||||||
),
|
|
||||||
'label': '投币',
|
|
||||||
'value': ActionType.coin,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(Icons.star_border),
|
|
||||||
'label': '收藏视频',
|
|
||||||
'value': ActionType.collect,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(Icons.watch_later_outlined),
|
|
||||||
'label': '稍后再看',
|
|
||||||
'value': ActionType.watchLater,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(Icons.share),
|
|
||||||
'label': '视频分享',
|
|
||||||
'value': ActionType.share,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(Icons.thumb_down_alt_outlined),
|
|
||||||
'label': '不喜欢',
|
|
||||||
'value': ActionType.dislike,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(Icons.image_outlined),
|
|
||||||
'label': '下载封面',
|
|
||||||
'value': ActionType.downloadCover,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(Icons.link_outlined),
|
|
||||||
'label': '复制链接',
|
|
||||||
'value': ActionType.copyLink,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
@ -7,5 +7,5 @@ enum DynamicsType {
|
|||||||
|
|
||||||
extension BusinessTypeExtension on DynamicsType {
|
extension BusinessTypeExtension on DynamicsType {
|
||||||
String get values => ['all', 'video', 'pgc', 'article'][index];
|
String get values => ['all', 'video', 'pgc', 'article'][index];
|
||||||
String get labels => ['全部', '投稿', '番剧', '专栏'][index];
|
String get labels => ['全部', '视频', '追番', '专栏'][index];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,12 +0,0 @@
|
|||||||
enum FullScreenGestureMode {
|
|
||||||
/// 从上滑到下
|
|
||||||
fromToptoBottom,
|
|
||||||
|
|
||||||
/// 从下滑到上
|
|
||||||
fromBottomtoTop,
|
|
||||||
}
|
|
||||||
|
|
||||||
extension FullScreenGestureModeExtension on FullScreenGestureMode {
|
|
||||||
String get values => ['fromToptoBottom', 'fromBottomtoTop'][index];
|
|
||||||
String get labels => ['从上往下滑进入全屏', '从下往上滑进入全屏'][index];
|
|
||||||
}
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
library commonn_model;
|
|
||||||
|
|
||||||
export './business_type.dart';
|
|
||||||
export './gesture_mode.dart';
|
|
||||||
@ -1,65 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
|
|
||||||
import '../../pages/dynamics/index.dart';
|
|
||||||
import '../../pages/home/index.dart';
|
|
||||||
import '../../pages/media/index.dart';
|
|
||||||
import '../../pages/rank/index.dart';
|
|
||||||
|
|
||||||
List defaultNavigationBars = [
|
|
||||||
{
|
|
||||||
'id': 0,
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.home_outlined,
|
|
||||||
size: 21,
|
|
||||||
),
|
|
||||||
'selectIcon': const Icon(
|
|
||||||
Icons.home,
|
|
||||||
size: 21,
|
|
||||||
),
|
|
||||||
'label': "首页",
|
|
||||||
'count': 0,
|
|
||||||
'page': const HomePage(),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'id': 1,
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.trending_up,
|
|
||||||
size: 21,
|
|
||||||
),
|
|
||||||
'selectIcon': const Icon(
|
|
||||||
Icons.trending_up_outlined,
|
|
||||||
size: 21,
|
|
||||||
),
|
|
||||||
'label': "排行榜",
|
|
||||||
'count': 0,
|
|
||||||
'page': const RankPage(),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'id': 2,
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.motion_photos_on_outlined,
|
|
||||||
size: 21,
|
|
||||||
),
|
|
||||||
'selectIcon': const Icon(
|
|
||||||
Icons.motion_photos_on,
|
|
||||||
size: 21,
|
|
||||||
),
|
|
||||||
'label': "动态",
|
|
||||||
'count': 0,
|
|
||||||
'page': const DynamicsPage(),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'id': 3,
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.video_collection_outlined,
|
|
||||||
size: 20,
|
|
||||||
),
|
|
||||||
'selectIcon': const Icon(
|
|
||||||
Icons.video_collection,
|
|
||||||
size: 21,
|
|
||||||
),
|
|
||||||
'label': "媒体库",
|
|
||||||
'count': 0,
|
|
||||||
'page': const MediaPage(),
|
|
||||||
}
|
|
||||||
];
|
|
||||||
@ -1,196 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:pilipala/pages/rank/zone/index.dart';
|
|
||||||
|
|
||||||
enum RandType {
|
|
||||||
all,
|
|
||||||
animation,
|
|
||||||
music,
|
|
||||||
dance,
|
|
||||||
game,
|
|
||||||
knowledge,
|
|
||||||
technology,
|
|
||||||
sport,
|
|
||||||
car,
|
|
||||||
food,
|
|
||||||
animal,
|
|
||||||
madness,
|
|
||||||
fashion,
|
|
||||||
entertainment,
|
|
||||||
film
|
|
||||||
}
|
|
||||||
|
|
||||||
extension RankTypeDesc on RandType {
|
|
||||||
String get description => [
|
|
||||||
'全站',
|
|
||||||
'动画',
|
|
||||||
'音乐',
|
|
||||||
'舞蹈',
|
|
||||||
'游戏',
|
|
||||||
'知识',
|
|
||||||
'科技',
|
|
||||||
'运动',
|
|
||||||
'汽车',
|
|
||||||
'美食',
|
|
||||||
'动物圈',
|
|
||||||
'鬼畜',
|
|
||||||
'时尚',
|
|
||||||
'娱乐',
|
|
||||||
'影视'
|
|
||||||
][index];
|
|
||||||
|
|
||||||
String get id => [
|
|
||||||
'all',
|
|
||||||
'animation',
|
|
||||||
'music',
|
|
||||||
'dance',
|
|
||||||
'game',
|
|
||||||
'knowledge',
|
|
||||||
'technology',
|
|
||||||
'sport',
|
|
||||||
'car',
|
|
||||||
'food',
|
|
||||||
'animal',
|
|
||||||
'madness',
|
|
||||||
'fashion',
|
|
||||||
'entertainment',
|
|
||||||
'film'
|
|
||||||
][index];
|
|
||||||
}
|
|
||||||
|
|
||||||
List tabsConfig = [
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '全站',
|
|
||||||
'type': RandType.all,
|
|
||||||
'page': const ZonePage(rid: 0),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '动画',
|
|
||||||
'type': RandType.animation,
|
|
||||||
'page': const ZonePage(rid: 1005),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '音乐',
|
|
||||||
'type': RandType.music,
|
|
||||||
'page': const ZonePage(rid: 1003),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '舞蹈',
|
|
||||||
'type': RandType.dance,
|
|
||||||
'page': const ZonePage(rid: 1004),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '游戏',
|
|
||||||
'type': RandType.game,
|
|
||||||
'page': const ZonePage(rid: 1008),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '知识',
|
|
||||||
'type': RandType.knowledge,
|
|
||||||
'page': const ZonePage(rid: 1010),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '科技',
|
|
||||||
'type': RandType.technology,
|
|
||||||
'page': const ZonePage(rid: 1012),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '运动',
|
|
||||||
'type': RandType.sport,
|
|
||||||
'page': const ZonePage(rid: 1018),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '汽车',
|
|
||||||
'type': RandType.car,
|
|
||||||
'page': const ZonePage(rid: 1013),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '美食',
|
|
||||||
'type': RandType.food,
|
|
||||||
'page': const ZonePage(rid: 1020),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '动物圈',
|
|
||||||
'type': RandType.animal,
|
|
||||||
'page': const ZonePage(rid: 1024),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '鬼畜',
|
|
||||||
'type': RandType.madness,
|
|
||||||
'page': const ZonePage(rid: 1007),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '时尚',
|
|
||||||
'type': RandType.fashion,
|
|
||||||
'page': const ZonePage(rid: 1014),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '娱乐',
|
|
||||||
'type': RandType.entertainment,
|
|
||||||
'page': const ZonePage(rid: 1002),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'icon': const Icon(
|
|
||||||
Icons.live_tv_outlined,
|
|
||||||
size: 15,
|
|
||||||
),
|
|
||||||
'label': '影视',
|
|
||||||
'type': RandType.film,
|
|
||||||
'page': const ZonePage(rid: 1001),
|
|
||||||
}
|
|
||||||
];
|
|
||||||
@ -1,7 +1,7 @@
|
|||||||
// 首页推荐类型
|
// 首页推荐类型
|
||||||
enum RcmdType { web, app, notLogin }
|
enum RcmdType { web, app }
|
||||||
|
|
||||||
extension RcmdTypeExtension on RcmdType {
|
extension RcmdTypeExtension on RcmdType {
|
||||||
String get values => ['web', 'app', 'notLogin'][index];
|
String get values => ['web', 'app'][index];
|
||||||
String get labels => ['web端', 'app端', '游客模式'][index];
|
String get labels => ['web端', 'app端'][index];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
enum ReplySortType { time, like }
|
enum ReplySortType { time, like, reply }
|
||||||
|
|
||||||
extension ReplySortTypeExtension on ReplySortType {
|
extension ReplySortTypeExtension on ReplySortType {
|
||||||
String get titles => ['最新评论', '最热评论'][index];
|
String get titles => ['最新评论', '最热评论', '回复最多'][index];
|
||||||
String get labels => ['最新', '最热'][index];
|
String get labels => ['最新', '最热', '最多回复'][index];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,7 +28,7 @@ extension SearchTypeExtension on SearchType {
|
|||||||
String get label => ['视频', '番剧', '直播间', '用户', '专栏'][index];
|
String get label => ['视频', '番剧', '直播间', '用户', '专栏'][index];
|
||||||
}
|
}
|
||||||
|
|
||||||
// 搜索类型为视频时
|
// 搜索类型为视频、专栏及相簿时
|
||||||
enum ArchiveFilterType {
|
enum ArchiveFilterType {
|
||||||
totalrank,
|
totalrank,
|
||||||
click,
|
click,
|
||||||
@ -44,21 +44,3 @@ extension ArchiveFilterTypeExtension on ArchiveFilterType {
|
|||||||
String get description =>
|
String get description =>
|
||||||
['默认排序', '播放多', '新发布', '弹幕多', '收藏多', '评论多', '最多喜欢'][index];
|
['默认排序', '播放多', '新发布', '弹幕多', '收藏多', '评论多', '最多喜欢'][index];
|
||||||
}
|
}
|
||||||
|
|
||||||
// 搜索类型为专栏时
|
|
||||||
enum ArticleFilterType {
|
|
||||||
// 综合排序
|
|
||||||
totalrank,
|
|
||||||
// 最新发布
|
|
||||||
pubdate,
|
|
||||||
// 最多点击
|
|
||||||
click,
|
|
||||||
// 最多喜欢
|
|
||||||
attention,
|
|
||||||
// 最多评论
|
|
||||||
scores,
|
|
||||||
}
|
|
||||||
|
|
||||||
extension ArticleFilterTypeExtension on ArticleFilterType {
|
|
||||||
String get description => ['综合排序', '最新发布', '最多点击', '最多喜欢', '最多评论'][index];
|
|
||||||
}
|
|
||||||
|
|||||||
@ -1,5 +0,0 @@
|
|||||||
enum VideoEpidoesType {
|
|
||||||
videoEpisode,
|
|
||||||
videoPart,
|
|
||||||
bangumiEpisode,
|
|
||||||
}
|
|
||||||
@ -414,8 +414,6 @@ class DynamicMajorModel {
|
|||||||
this.none,
|
this.none,
|
||||||
this.type,
|
this.type,
|
||||||
this.courses,
|
this.courses,
|
||||||
this.common,
|
|
||||||
this.music,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
DynamicArchiveModel? archive;
|
DynamicArchiveModel? archive;
|
||||||
@ -431,8 +429,6 @@ class DynamicMajorModel {
|
|||||||
// MAJOR_TYPE_OPUS 图文/文章
|
// MAJOR_TYPE_OPUS 图文/文章
|
||||||
String? type;
|
String? type;
|
||||||
Map? courses;
|
Map? courses;
|
||||||
Map? common;
|
|
||||||
Map? music;
|
|
||||||
|
|
||||||
DynamicMajorModel.fromJson(Map<String, dynamic> json) {
|
DynamicMajorModel.fromJson(Map<String, dynamic> json) {
|
||||||
archive = json['archive'] != null
|
archive = json['archive'] != null
|
||||||
@ -456,8 +452,6 @@ class DynamicMajorModel {
|
|||||||
json['none'] != null ? DynamicNoneModel.fromJson(json['none']) : null;
|
json['none'] != null ? DynamicNoneModel.fromJson(json['none']) : null;
|
||||||
type = json['type'];
|
type = json['type'];
|
||||||
courses = json['courses'] ?? {};
|
courses = json['courses'] ?? {};
|
||||||
common = json['common'] ?? {};
|
|
||||||
music = json['music'] ?? {};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2,28 +2,18 @@ class FollowUpModel {
|
|||||||
FollowUpModel({
|
FollowUpModel({
|
||||||
this.liveUsers,
|
this.liveUsers,
|
||||||
this.upList,
|
this.upList,
|
||||||
this.liveList,
|
|
||||||
this.myInfo,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
LiveUsers? liveUsers;
|
LiveUsers? liveUsers;
|
||||||
List<UpItem>? upList;
|
List<UpItem>? upList;
|
||||||
List<LiveUserItem>? liveList;
|
|
||||||
MyInfo? myInfo;
|
|
||||||
|
|
||||||
FollowUpModel.fromJson(Map<String, dynamic> json) {
|
FollowUpModel.fromJson(Map<String, dynamic> json) {
|
||||||
liveUsers = json['live_users'] != null
|
liveUsers = json['live_users'] != null
|
||||||
? LiveUsers.fromJson(json['live_users'])
|
? LiveUsers.fromJson(json['live_users'])
|
||||||
: null;
|
: null;
|
||||||
liveList = json['live_users'] != null
|
|
||||||
? json['live_users']['items']
|
|
||||||
.map<LiveUserItem>((e) => LiveUserItem.fromJson(e))
|
|
||||||
.toList()
|
|
||||||
: [];
|
|
||||||
upList = json['up_list'] != null
|
upList = json['up_list'] != null
|
||||||
? json['up_list'].map<UpItem>((e) => UpItem.fromJson(e)).toList()
|
? json['up_list'].map<UpItem>((e) => UpItem.fromJson(e)).toList()
|
||||||
: [];
|
: [];
|
||||||
myInfo = json['my_info'] != null ? MyInfo.fromJson(json['my_info']) : null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -103,21 +93,3 @@ class UpItem {
|
|||||||
uname = json['uname'];
|
uname = json['uname'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class MyInfo {
|
|
||||||
MyInfo({
|
|
||||||
this.face,
|
|
||||||
this.mid,
|
|
||||||
this.name,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? face;
|
|
||||||
int? mid;
|
|
||||||
String? name;
|
|
||||||
|
|
||||||
MyInfo.fromJson(Map<String, dynamic> json) {
|
|
||||||
face = json['face'];
|
|
||||||
mid = json['mid'];
|
|
||||||
name = json['name'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
import 'package:pilipala/utils/id_utils.dart';
|
|
||||||
|
|
||||||
class RecVideoItemAppModel {
|
class RecVideoItemAppModel {
|
||||||
RecVideoItemAppModel({
|
RecVideoItemAppModel({
|
||||||
this.id,
|
this.id,
|
||||||
@ -30,11 +28,11 @@ class RecVideoItemAppModel {
|
|||||||
int? cid;
|
int? cid;
|
||||||
String? pic;
|
String? pic;
|
||||||
RcmdStat? stat;
|
RcmdStat? stat;
|
||||||
int? duration;
|
String? duration;
|
||||||
String? title;
|
String? title;
|
||||||
int? isFollowed;
|
int? isFollowed;
|
||||||
RcmdOwner? owner;
|
RcmdOwner? owner;
|
||||||
String? rcmdReason;
|
RcmdReason? rcmdReason;
|
||||||
String? goto;
|
String? goto;
|
||||||
int? param;
|
int? param;
|
||||||
String? uri;
|
String? uri;
|
||||||
@ -52,29 +50,19 @@ class RecVideoItemAppModel {
|
|||||||
? json['player_args']['aid']
|
? json['player_args']['aid']
|
||||||
: int.parse(json['param'] ?? '-1');
|
: int.parse(json['param'] ?? '-1');
|
||||||
aid = json['player_args'] != null ? json['player_args']['aid'] : -1;
|
aid = json['player_args'] != null ? json['player_args']['aid'] : -1;
|
||||||
bvid = json['player_args'] != null
|
bvid = null;
|
||||||
? IdUtils.av2bv(json['player_args']['aid'])
|
|
||||||
: '';
|
|
||||||
cid = json['player_args'] != null ? json['player_args']['cid'] : -1;
|
cid = json['player_args'] != null ? json['player_args']['cid'] : -1;
|
||||||
pic = json['cover'];
|
pic = json['cover'];
|
||||||
stat = RcmdStat.fromJson(json);
|
stat = RcmdStat.fromJson(json);
|
||||||
// 改用player_args中的duration作为原始数据(秒数)
|
duration = json['cover_right_text'];
|
||||||
duration =
|
title = json['title'];
|
||||||
json['player_args'] != null ? json['player_args']['duration'] : -1;
|
isFollowed = 0;
|
||||||
//duration = json['cover_right_text'];
|
|
||||||
title = json['title'] ?? '获取标题失败';
|
|
||||||
owner = RcmdOwner.fromJson(json);
|
owner = RcmdOwner.fromJson(json);
|
||||||
rcmdReason = json['bottom_rcmd_reason'] ?? json['top_rcmd_reason'];
|
rcmdReason = json['rcmd_reason_style'] != null
|
||||||
// 由于app端api并不会直接返回与owner的关注状态
|
? RcmdReason.fromJson(json['rcmd_reason_style'])
|
||||||
// 所以借用推荐原因是否为“已关注”、“新关注”等判别关注状态,从而与web端接口等效
|
: null;
|
||||||
RegExp regex = RegExp(r'已关注|新关注');
|
|
||||||
isFollowed = regex.hasMatch(rcmdReason ?? '') ? 1 : 0;
|
|
||||||
// 如果是,就无需再显示推荐原因,交由view统一处理即可
|
|
||||||
if (isFollowed == 1) {
|
|
||||||
rcmdReason = null;
|
|
||||||
}
|
|
||||||
goto = json['goto'];
|
goto = json['goto'];
|
||||||
param = int.parse(json['param'] ?? '-1');
|
param = int.parse(json['param']);
|
||||||
uri = json['uri'];
|
uri = json['uri'];
|
||||||
talkBack = json['talk_back'];
|
talkBack = json['talk_back'];
|
||||||
|
|
||||||
|
|||||||
@ -1,126 +0,0 @@
|
|||||||
class LiveFollowingModel {
|
|
||||||
int? count;
|
|
||||||
List<LiveFollowingItemModel>? list;
|
|
||||||
int? liveCount;
|
|
||||||
int? neverLivedCount;
|
|
||||||
List? neverLivedFaces;
|
|
||||||
int? pageSize;
|
|
||||||
String? title;
|
|
||||||
int? totalPage;
|
|
||||||
|
|
||||||
LiveFollowingModel({
|
|
||||||
this.count,
|
|
||||||
this.list,
|
|
||||||
this.liveCount,
|
|
||||||
this.neverLivedCount,
|
|
||||||
this.neverLivedFaces,
|
|
||||||
this.pageSize,
|
|
||||||
this.title,
|
|
||||||
this.totalPage,
|
|
||||||
});
|
|
||||||
|
|
||||||
LiveFollowingModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
count = json['count'];
|
|
||||||
if (json['list'] != null) {
|
|
||||||
list = <LiveFollowingItemModel>[];
|
|
||||||
json['list'].forEach((v) {
|
|
||||||
list!.add(LiveFollowingItemModel.fromJson(v));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
liveCount = json['live_count'];
|
|
||||||
neverLivedCount = json['never_lived_count'];
|
|
||||||
if (json['never_lived_faces'] != null) {
|
|
||||||
neverLivedFaces = <dynamic>[];
|
|
||||||
json['never_lived_faces'].forEach((v) {
|
|
||||||
neverLivedFaces!.add(v);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
pageSize = json['pageSize'];
|
|
||||||
title = json['title'];
|
|
||||||
totalPage = json['totalPage'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class LiveFollowingItemModel {
|
|
||||||
int? roomId;
|
|
||||||
int? uid;
|
|
||||||
String? uname;
|
|
||||||
String? title;
|
|
||||||
String? face;
|
|
||||||
int? liveStatus;
|
|
||||||
int? recordNum;
|
|
||||||
String? recentRecordId;
|
|
||||||
int? isAttention;
|
|
||||||
int? clipNum;
|
|
||||||
int? fansNum;
|
|
||||||
String? areaName;
|
|
||||||
String? areaValue;
|
|
||||||
String? tags;
|
|
||||||
String? recentRecordIdV2;
|
|
||||||
int? recordNumV2;
|
|
||||||
int? recordLiveTime;
|
|
||||||
String? areaNameV2;
|
|
||||||
String? roomNews;
|
|
||||||
String? watchIcon;
|
|
||||||
String? textSmall;
|
|
||||||
String? roomCover;
|
|
||||||
String? pic;
|
|
||||||
int? parentAreaId;
|
|
||||||
int? areaId;
|
|
||||||
|
|
||||||
LiveFollowingItemModel({
|
|
||||||
this.roomId,
|
|
||||||
this.uid,
|
|
||||||
this.uname,
|
|
||||||
this.title,
|
|
||||||
this.face,
|
|
||||||
this.liveStatus,
|
|
||||||
this.recordNum,
|
|
||||||
this.recentRecordId,
|
|
||||||
this.isAttention,
|
|
||||||
this.clipNum,
|
|
||||||
this.fansNum,
|
|
||||||
this.areaName,
|
|
||||||
this.areaValue,
|
|
||||||
this.tags,
|
|
||||||
this.recentRecordIdV2,
|
|
||||||
this.recordNumV2,
|
|
||||||
this.recordLiveTime,
|
|
||||||
this.areaNameV2,
|
|
||||||
this.roomNews,
|
|
||||||
this.watchIcon,
|
|
||||||
this.textSmall,
|
|
||||||
this.roomCover,
|
|
||||||
this.pic,
|
|
||||||
this.parentAreaId,
|
|
||||||
this.areaId,
|
|
||||||
});
|
|
||||||
|
|
||||||
LiveFollowingItemModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
roomId = json['roomid'];
|
|
||||||
uid = json['uid'];
|
|
||||||
uname = json['uname'];
|
|
||||||
title = json['title'];
|
|
||||||
face = json['face'];
|
|
||||||
liveStatus = json['live_status'];
|
|
||||||
recordNum = json['record_num'];
|
|
||||||
recentRecordId = json['recent_record_id'];
|
|
||||||
isAttention = json['is_attention'];
|
|
||||||
clipNum = json['clipnum'];
|
|
||||||
fansNum = json['fans_num'];
|
|
||||||
areaName = json['area_name'];
|
|
||||||
areaValue = json['area_value'];
|
|
||||||
tags = json['tags'];
|
|
||||||
recentRecordIdV2 = json['recent_record_id_v2'];
|
|
||||||
recordNumV2 = json['record_num_v2'];
|
|
||||||
recordLiveTime = json['record_live_time'];
|
|
||||||
areaNameV2 = json['area_name_v2'];
|
|
||||||
roomNews = json['room_news'];
|
|
||||||
watchIcon = json['watch_icon'];
|
|
||||||
textSmall = json['text_small'];
|
|
||||||
roomCover = json['room_cover'];
|
|
||||||
pic = json['room_cover'];
|
|
||||||
parentAreaId = json['parent_area_id'];
|
|
||||||
areaId = json['area_id'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,101 +0,0 @@
|
|||||||
class LiveMessageModel {
|
|
||||||
// 消息类型
|
|
||||||
final LiveMessageType type;
|
|
||||||
|
|
||||||
// 用户名
|
|
||||||
final String userName;
|
|
||||||
|
|
||||||
// 信息
|
|
||||||
final String? message;
|
|
||||||
|
|
||||||
// 数据
|
|
||||||
final dynamic data;
|
|
||||||
|
|
||||||
final String? face;
|
|
||||||
final int? uid;
|
|
||||||
final Map<String, dynamic>? emots;
|
|
||||||
|
|
||||||
// 颜色
|
|
||||||
final LiveMessageColor color;
|
|
||||||
|
|
||||||
LiveMessageModel({
|
|
||||||
required this.type,
|
|
||||||
required this.userName,
|
|
||||||
required this.message,
|
|
||||||
required this.color,
|
|
||||||
this.data,
|
|
||||||
this.face,
|
|
||||||
this.uid,
|
|
||||||
this.emots,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
class LiveSuperChatMessage {
|
|
||||||
final String backgroundBottomColor;
|
|
||||||
final String backgroundColor;
|
|
||||||
final DateTime endTime;
|
|
||||||
final String face;
|
|
||||||
final String message;
|
|
||||||
final String price;
|
|
||||||
final DateTime startTime;
|
|
||||||
final String userName;
|
|
||||||
|
|
||||||
LiveSuperChatMessage({
|
|
||||||
required this.backgroundBottomColor,
|
|
||||||
required this.backgroundColor,
|
|
||||||
required this.endTime,
|
|
||||||
required this.face,
|
|
||||||
required this.message,
|
|
||||||
required this.price,
|
|
||||||
required this.startTime,
|
|
||||||
required this.userName,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
enum LiveMessageType {
|
|
||||||
// 普通留言
|
|
||||||
chat,
|
|
||||||
// 醒目留言
|
|
||||||
superChat,
|
|
||||||
//
|
|
||||||
online,
|
|
||||||
// 加入
|
|
||||||
join,
|
|
||||||
// 关注
|
|
||||||
follow,
|
|
||||||
}
|
|
||||||
|
|
||||||
class LiveMessageColor {
|
|
||||||
final int r, g, b;
|
|
||||||
LiveMessageColor(this.r, this.g, this.b);
|
|
||||||
static LiveMessageColor get white => LiveMessageColor(255, 255, 255);
|
|
||||||
static LiveMessageColor numberToColor(int intColor) {
|
|
||||||
var obj = intColor.toRadixString(16);
|
|
||||||
|
|
||||||
LiveMessageColor color = LiveMessageColor.white;
|
|
||||||
if (obj.length == 4) {
|
|
||||||
obj = "00$obj";
|
|
||||||
}
|
|
||||||
if (obj.length == 6) {
|
|
||||||
var R = int.parse(obj.substring(0, 2), radix: 16);
|
|
||||||
var G = int.parse(obj.substring(2, 4), radix: 16);
|
|
||||||
var B = int.parse(obj.substring(4, 6), radix: 16);
|
|
||||||
|
|
||||||
color = LiveMessageColor(R, G, B);
|
|
||||||
}
|
|
||||||
if (obj.length == 8) {
|
|
||||||
var R = int.parse(obj.substring(2, 4), radix: 16);
|
|
||||||
var G = int.parse(obj.substring(4, 6), radix: 16);
|
|
||||||
var B = int.parse(obj.substring(6, 8), radix: 16);
|
|
||||||
//var A = int.parse(obj.substring(0, 2), radix: 16);
|
|
||||||
color = LiveMessageColor(R, G, B);
|
|
||||||
}
|
|
||||||
|
|
||||||
return color;
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
String toString() {
|
|
||||||
return "#${r.toRadixString(16).padLeft(2, '0')}${g.toRadixString(16).padLeft(2, '0')}${b.toRadixString(16).padLeft(2, '0')}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
enum LiveQuality {
|
|
||||||
dolby,
|
|
||||||
super4K,
|
|
||||||
origin,
|
|
||||||
bluRay,
|
|
||||||
superHD,
|
|
||||||
smooth,
|
|
||||||
flunt,
|
|
||||||
}
|
|
||||||
|
|
||||||
extension LiveQualityCode on LiveQuality {
|
|
||||||
static final List<int> _codeList = [
|
|
||||||
30000,
|
|
||||||
20000,
|
|
||||||
10000,
|
|
||||||
400,
|
|
||||||
250,
|
|
||||||
150,
|
|
||||||
80,
|
|
||||||
];
|
|
||||||
int get code => _codeList[index];
|
|
||||||
|
|
||||||
static LiveQuality? fromCode(int code) {
|
|
||||||
final index = _codeList.indexOf(code);
|
|
||||||
if (index != -1) {
|
|
||||||
return LiveQuality.values[index];
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
extension VideoQualityDesc on LiveQuality {
|
|
||||||
static final List<String> _descList = [
|
|
||||||
'杜比',
|
|
||||||
'4K',
|
|
||||||
'原画',
|
|
||||||
'蓝光',
|
|
||||||
'超清',
|
|
||||||
'高清',
|
|
||||||
'流畅',
|
|
||||||
];
|
|
||||||
get description => _descList[index];
|
|
||||||
}
|
|
||||||
@ -1,13 +1,11 @@
|
|||||||
class RoomInfoModel {
|
class RoomInfoModel {
|
||||||
RoomInfoModel({
|
RoomInfoModel({
|
||||||
this.roomId,
|
this.roomId,
|
||||||
this.isPortrait,
|
|
||||||
this.liveStatus,
|
this.liveStatus,
|
||||||
this.liveTime,
|
this.liveTime,
|
||||||
this.playurlInfo,
|
this.playurlInfo,
|
||||||
});
|
});
|
||||||
int? roomId;
|
int? roomId;
|
||||||
bool? isPortrait;
|
|
||||||
int? liveStatus;
|
int? liveStatus;
|
||||||
int? liveTime;
|
int? liveTime;
|
||||||
PlayurlInfo? playurlInfo;
|
PlayurlInfo? playurlInfo;
|
||||||
@ -15,7 +13,6 @@ class RoomInfoModel {
|
|||||||
RoomInfoModel.fromJson(Map<String, dynamic> json) {
|
RoomInfoModel.fromJson(Map<String, dynamic> json) {
|
||||||
roomId = json['room_id'];
|
roomId = json['room_id'];
|
||||||
liveStatus = json['live_status'];
|
liveStatus = json['live_status'];
|
||||||
isPortrait = json['is_portrait'];
|
|
||||||
liveTime = json['live_time'];
|
liveTime = json['live_time'];
|
||||||
playurlInfo = PlayurlInfo.fromJson(json['playurl_info']);
|
playurlInfo = PlayurlInfo.fromJson(json['playurl_info']);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,130 +0,0 @@
|
|||||||
class RoomInfoH5Model {
|
|
||||||
RoomInfoH5Model({
|
|
||||||
this.roomInfo,
|
|
||||||
this.anchorInfo,
|
|
||||||
this.isRoomFeed,
|
|
||||||
this.watchedShow,
|
|
||||||
this.likeInfoV3,
|
|
||||||
this.blockInfo,
|
|
||||||
});
|
|
||||||
|
|
||||||
RoomInfo? roomInfo;
|
|
||||||
AnchorInfo? anchorInfo;
|
|
||||||
int? isRoomFeed;
|
|
||||||
Map? watchedShow;
|
|
||||||
LikeInfoV3? likeInfoV3;
|
|
||||||
Map? blockInfo;
|
|
||||||
|
|
||||||
RoomInfoH5Model.fromJson(Map<String, dynamic> json) {
|
|
||||||
roomInfo = RoomInfo.fromJson(json['room_info']);
|
|
||||||
anchorInfo = AnchorInfo.fromJson(json['anchor_info']);
|
|
||||||
isRoomFeed = json['is_room_feed'];
|
|
||||||
watchedShow = json['watched_show'];
|
|
||||||
likeInfoV3 = LikeInfoV3.fromJson(json['like_info_v3']);
|
|
||||||
blockInfo = json['block_info'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class RoomInfo {
|
|
||||||
RoomInfo({
|
|
||||||
this.uid,
|
|
||||||
this.roomId,
|
|
||||||
this.title,
|
|
||||||
this.cover,
|
|
||||||
this.description,
|
|
||||||
this.liveStatus,
|
|
||||||
this.liveStartTime,
|
|
||||||
this.areaId,
|
|
||||||
this.areaName,
|
|
||||||
this.parentAreaId,
|
|
||||||
this.parentAreaName,
|
|
||||||
this.online,
|
|
||||||
this.background,
|
|
||||||
this.appBackground,
|
|
||||||
this.liveId,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? uid;
|
|
||||||
int? roomId;
|
|
||||||
String? title;
|
|
||||||
String? cover;
|
|
||||||
String? description;
|
|
||||||
int? liveStatus;
|
|
||||||
int? liveStartTime;
|
|
||||||
int? areaId;
|
|
||||||
String? areaName;
|
|
||||||
int? parentAreaId;
|
|
||||||
String? parentAreaName;
|
|
||||||
int? online;
|
|
||||||
String? background;
|
|
||||||
String? appBackground;
|
|
||||||
String? liveId;
|
|
||||||
|
|
||||||
RoomInfo.fromJson(Map<String, dynamic> json) {
|
|
||||||
uid = json['uid'];
|
|
||||||
roomId = json['room_id'];
|
|
||||||
title = json['title'];
|
|
||||||
cover = json['cover'];
|
|
||||||
description = json['description'];
|
|
||||||
liveStatus = json['liveS_satus'];
|
|
||||||
liveStartTime = json['live_start_time'];
|
|
||||||
areaId = json['area_id'];
|
|
||||||
areaName = json['area_name'];
|
|
||||||
parentAreaId = json['parent_area_id'];
|
|
||||||
parentAreaName = json['parent_area_name'];
|
|
||||||
online = json['online'];
|
|
||||||
background = json['background'];
|
|
||||||
appBackground = json['app_background'];
|
|
||||||
liveId = json['live_id'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class AnchorInfo {
|
|
||||||
AnchorInfo({
|
|
||||||
this.baseInfo,
|
|
||||||
this.relationInfo,
|
|
||||||
});
|
|
||||||
|
|
||||||
BaseInfo? baseInfo;
|
|
||||||
RelationInfo? relationInfo;
|
|
||||||
|
|
||||||
AnchorInfo.fromJson(Map<String, dynamic> json) {
|
|
||||||
baseInfo = BaseInfo.fromJson(json['base_info']);
|
|
||||||
relationInfo = RelationInfo.fromJson(json['relation_info']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class BaseInfo {
|
|
||||||
BaseInfo({
|
|
||||||
this.uname,
|
|
||||||
this.face,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? uname;
|
|
||||||
String? face;
|
|
||||||
|
|
||||||
BaseInfo.fromJson(Map<String, dynamic> json) {
|
|
||||||
uname = json['uname'];
|
|
||||||
face = json['face'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class RelationInfo {
|
|
||||||
RelationInfo({this.attention});
|
|
||||||
|
|
||||||
int? attention;
|
|
||||||
|
|
||||||
RelationInfo.fromJson(Map<String, dynamic> json) {
|
|
||||||
attention = json['attention'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class LikeInfoV3 {
|
|
||||||
LikeInfoV3({this.totalLikes});
|
|
||||||
|
|
||||||
int? totalLikes;
|
|
||||||
|
|
||||||
LikeInfoV3.fromJson(Map<String, dynamic> json) {
|
|
||||||
totalLikes = json['total_likes'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -142,7 +142,7 @@ class Stat {
|
|||||||
|
|
||||||
Stat.fromJson(Map<String, dynamic> json) {
|
Stat.fromJson(Map<String, dynamic> json) {
|
||||||
view = json["play"];
|
view = json["play"];
|
||||||
danmaku = json['video_review'];
|
danmaku = json['comment'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,46 +0,0 @@
|
|||||||
class MemberArticleDataModel {
|
|
||||||
MemberArticleDataModel({
|
|
||||||
this.hasMore,
|
|
||||||
this.items,
|
|
||||||
this.offset,
|
|
||||||
this.updateNum,
|
|
||||||
});
|
|
||||||
|
|
||||||
bool? hasMore;
|
|
||||||
List<MemberArticleItemModel>? items;
|
|
||||||
String? offset;
|
|
||||||
int? updateNum;
|
|
||||||
|
|
||||||
MemberArticleDataModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
hasMore = json['has_more'];
|
|
||||||
items = json['items']
|
|
||||||
.map<MemberArticleItemModel>((e) => MemberArticleItemModel.fromJson(e))
|
|
||||||
.toList();
|
|
||||||
offset = json['offset'];
|
|
||||||
updateNum = json['update_num'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class MemberArticleItemModel {
|
|
||||||
MemberArticleItemModel({
|
|
||||||
this.content,
|
|
||||||
this.cover,
|
|
||||||
this.jumpUrl,
|
|
||||||
this.opusId,
|
|
||||||
this.stat,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? content;
|
|
||||||
Map? cover;
|
|
||||||
String? jumpUrl;
|
|
||||||
String? opusId;
|
|
||||||
Map? stat;
|
|
||||||
|
|
||||||
MemberArticleItemModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
content = json['content'];
|
|
||||||
cover = json['cover'];
|
|
||||||
jumpUrl = json['jump_url'];
|
|
||||||
opusId = json['opus_id'];
|
|
||||||
stat = json['stat'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -47,23 +47,18 @@ class Vip {
|
|||||||
this.status,
|
this.status,
|
||||||
this.dueDate,
|
this.dueDate,
|
||||||
this.label,
|
this.label,
|
||||||
this.nicknameColor,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
int? type;
|
int? type;
|
||||||
int? status;
|
int? status;
|
||||||
int? dueDate;
|
int? dueDate;
|
||||||
Map? label;
|
Map? label;
|
||||||
int? nicknameColor;
|
|
||||||
|
|
||||||
Vip.fromJson(Map<String, dynamic> json) {
|
Vip.fromJson(Map<String, dynamic> json) {
|
||||||
type = json['type'];
|
type = json['type'];
|
||||||
status = json['status'];
|
status = json['status'];
|
||||||
dueDate = json['due_date'];
|
dueDate = json['due_date'];
|
||||||
label = json['label'];
|
label = json['label'];
|
||||||
nicknameColor = json['nickname_color'] == ''
|
|
||||||
? null
|
|
||||||
: int.parse("0xFF${json['nickname_color'].replaceAll('#', '')}");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,210 +0,0 @@
|
|||||||
class MemberLikeDataModel {
|
|
||||||
MemberLikeDataModel({
|
|
||||||
this.aid,
|
|
||||||
this.videos,
|
|
||||||
this.tid,
|
|
||||||
this.tname,
|
|
||||||
this.pic,
|
|
||||||
this.title,
|
|
||||||
this.pubdate,
|
|
||||||
this.ctime,
|
|
||||||
this.desc,
|
|
||||||
this.state,
|
|
||||||
this.duration,
|
|
||||||
this.redirectUrl,
|
|
||||||
this.rights,
|
|
||||||
this.owner,
|
|
||||||
this.stat,
|
|
||||||
this.dimension,
|
|
||||||
this.cover43,
|
|
||||||
this.bvid,
|
|
||||||
this.interVideo,
|
|
||||||
this.resourceType,
|
|
||||||
this.subtitle,
|
|
||||||
this.enableVt,
|
|
||||||
});
|
|
||||||
|
|
||||||
final int? aid;
|
|
||||||
final int? videos;
|
|
||||||
final int? tid;
|
|
||||||
final String? tname;
|
|
||||||
final String? pic;
|
|
||||||
final String? title;
|
|
||||||
final int? pubdate;
|
|
||||||
final int? ctime;
|
|
||||||
final String? desc;
|
|
||||||
final int? state;
|
|
||||||
final int? duration;
|
|
||||||
final String? redirectUrl;
|
|
||||||
final Rights? rights;
|
|
||||||
final Owner? owner;
|
|
||||||
final Stat? stat;
|
|
||||||
final Dimension? dimension;
|
|
||||||
final String? cover43;
|
|
||||||
final String? bvid;
|
|
||||||
final bool? interVideo;
|
|
||||||
final String? resourceType;
|
|
||||||
final String? subtitle;
|
|
||||||
final int? enableVt;
|
|
||||||
|
|
||||||
factory MemberLikeDataModel.fromJson(Map<String, dynamic> json) =>
|
|
||||||
MemberLikeDataModel(
|
|
||||||
aid: json["aid"],
|
|
||||||
videos: json["videos"],
|
|
||||||
tid: json["tid"],
|
|
||||||
tname: json["tname"],
|
|
||||||
pic: json["pic"],
|
|
||||||
title: json["title"],
|
|
||||||
pubdate: json["pubdate"],
|
|
||||||
ctime: json["ctime"],
|
|
||||||
desc: json["desc"],
|
|
||||||
state: json["state"],
|
|
||||||
duration: json["duration"],
|
|
||||||
redirectUrl: json["redirect_url"],
|
|
||||||
rights: Rights.fromJson(json["rights"]),
|
|
||||||
owner: Owner.fromJson(json["owner"]),
|
|
||||||
stat: Stat.fromJson(json["stat"]),
|
|
||||||
dimension: Dimension.fromJson(json["dimension"]),
|
|
||||||
cover43: json["cover43"],
|
|
||||||
bvid: json["bvid"],
|
|
||||||
interVideo: json["inter_video"],
|
|
||||||
resourceType: json["resource_type"],
|
|
||||||
subtitle: json["subtitle"],
|
|
||||||
enableVt: json["enable_vt"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Dimension {
|
|
||||||
Dimension({
|
|
||||||
required this.width,
|
|
||||||
required this.height,
|
|
||||||
required this.rotate,
|
|
||||||
});
|
|
||||||
|
|
||||||
final int width;
|
|
||||||
final int height;
|
|
||||||
final int rotate;
|
|
||||||
|
|
||||||
factory Dimension.fromJson(Map<String, dynamic> json) => Dimension(
|
|
||||||
width: json["width"],
|
|
||||||
height: json["height"],
|
|
||||||
rotate: json["rotate"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Owner {
|
|
||||||
Owner({
|
|
||||||
required this.mid,
|
|
||||||
required this.name,
|
|
||||||
required this.face,
|
|
||||||
});
|
|
||||||
|
|
||||||
final int mid;
|
|
||||||
final String name;
|
|
||||||
final String face;
|
|
||||||
|
|
||||||
factory Owner.fromJson(Map<String, dynamic> json) => Owner(
|
|
||||||
mid: json["mid"],
|
|
||||||
name: json["name"],
|
|
||||||
face: json["face"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Rights {
|
|
||||||
Rights({
|
|
||||||
required this.bp,
|
|
||||||
required this.elec,
|
|
||||||
required this.download,
|
|
||||||
required this.movie,
|
|
||||||
required this.pay,
|
|
||||||
required this.hd5,
|
|
||||||
required this.noReprint,
|
|
||||||
required this.autoplay,
|
|
||||||
required this.ugcPay,
|
|
||||||
required this.isCooperation,
|
|
||||||
required this.ugcPayPreview,
|
|
||||||
required this.noBackground,
|
|
||||||
required this.arcPay,
|
|
||||||
required this.payFreeWatch,
|
|
||||||
});
|
|
||||||
|
|
||||||
final int bp;
|
|
||||||
final int elec;
|
|
||||||
final int download;
|
|
||||||
final int movie;
|
|
||||||
final int pay;
|
|
||||||
final int hd5;
|
|
||||||
final int noReprint;
|
|
||||||
final int autoplay;
|
|
||||||
final int ugcPay;
|
|
||||||
final int isCooperation;
|
|
||||||
final int ugcPayPreview;
|
|
||||||
final int noBackground;
|
|
||||||
final int arcPay;
|
|
||||||
final int payFreeWatch;
|
|
||||||
|
|
||||||
factory Rights.fromJson(Map<String, dynamic> json) => Rights(
|
|
||||||
bp: json["bp"],
|
|
||||||
elec: json["elec"],
|
|
||||||
download: json["download"],
|
|
||||||
movie: json["movie"],
|
|
||||||
pay: json["pay"],
|
|
||||||
hd5: json["hd5"],
|
|
||||||
noReprint: json["no_reprint"],
|
|
||||||
autoplay: json["autoplay"],
|
|
||||||
ugcPay: json["ugc_pay"],
|
|
||||||
isCooperation: json["is_cooperation"],
|
|
||||||
ugcPayPreview: json["ugc_pay_preview"],
|
|
||||||
noBackground: json["no_background"],
|
|
||||||
arcPay: json["arc_pay"],
|
|
||||||
payFreeWatch: json["pay_free_watch"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Stat {
|
|
||||||
Stat({
|
|
||||||
required this.aid,
|
|
||||||
required this.view,
|
|
||||||
required this.danmaku,
|
|
||||||
required this.reply,
|
|
||||||
required this.favorite,
|
|
||||||
required this.coin,
|
|
||||||
required this.share,
|
|
||||||
required this.nowRank,
|
|
||||||
required this.hisRank,
|
|
||||||
required this.like,
|
|
||||||
required this.dislike,
|
|
||||||
required this.vt,
|
|
||||||
required this.vv,
|
|
||||||
});
|
|
||||||
|
|
||||||
final int aid;
|
|
||||||
final int view;
|
|
||||||
final int danmaku;
|
|
||||||
final int reply;
|
|
||||||
final int favorite;
|
|
||||||
final int coin;
|
|
||||||
final int share;
|
|
||||||
final int nowRank;
|
|
||||||
final int hisRank;
|
|
||||||
final int like;
|
|
||||||
final int dislike;
|
|
||||||
final int vt;
|
|
||||||
final int vv;
|
|
||||||
|
|
||||||
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
|
|
||||||
aid: json["aid"],
|
|
||||||
view: json["view"],
|
|
||||||
danmaku: json["danmaku"],
|
|
||||||
reply: json["reply"],
|
|
||||||
favorite: json["favorite"],
|
|
||||||
coin: json["coin"],
|
|
||||||
share: json["share"],
|
|
||||||
nowRank: json["now_rank"],
|
|
||||||
hisRank: json["his_rank"],
|
|
||||||
like: json["like"],
|
|
||||||
dislike: json["dislike"],
|
|
||||||
vt: json["vt"],
|
|
||||||
vv: json["vv"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -2,32 +2,18 @@ class MemberSeasonsDataModel {
|
|||||||
MemberSeasonsDataModel({
|
MemberSeasonsDataModel({
|
||||||
this.page,
|
this.page,
|
||||||
this.seasonsList,
|
this.seasonsList,
|
||||||
this.seriesList,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Map? page;
|
Map? page;
|
||||||
List<MemberSeasonsList>? seasonsList;
|
List<MemberSeasonsList>? seasonsList;
|
||||||
List<MemberArchiveItem>? seriesList;
|
|
||||||
|
|
||||||
MemberSeasonsDataModel.fromJson(Map<String, dynamic> json) {
|
MemberSeasonsDataModel.fromJson(Map<String, dynamic> json) {
|
||||||
page = json['page'];
|
page = json['page'];
|
||||||
var tempList1 = json['seasons_list'] != null
|
seasonsList = json['seasons_list'] != null
|
||||||
? json['seasons_list']
|
? json['seasons_list']
|
||||||
.map<MemberSeasonsList>((e) => MemberSeasonsList.fromJson(e))
|
.map<MemberSeasonsList>((e) => MemberSeasonsList.fromJson(e))
|
||||||
.toList()
|
.toList()
|
||||||
: [];
|
: [];
|
||||||
var tempList2 = json['series_list'] != null
|
|
||||||
? json['series_list']
|
|
||||||
.map<MemberSeasonsList>((e) => MemberSeasonsList.fromJson(e))
|
|
||||||
.toList()
|
|
||||||
: [];
|
|
||||||
seriesList = json['archives'] != null
|
|
||||||
? json['archives']
|
|
||||||
.map<MemberArchiveItem>((e) => MemberArchiveItem.fromJson(e))
|
|
||||||
.toList()
|
|
||||||
: [];
|
|
||||||
|
|
||||||
seasonsList = [...tempList1, ...tempList2];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -100,8 +86,6 @@ class MamberMeta {
|
|||||||
this.ptime,
|
this.ptime,
|
||||||
this.seasonId,
|
this.seasonId,
|
||||||
this.total,
|
this.total,
|
||||||
this.seriesId,
|
|
||||||
this.category,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
String? cover;
|
String? cover;
|
||||||
@ -111,8 +95,6 @@ class MamberMeta {
|
|||||||
int? ptime;
|
int? ptime;
|
||||||
int? seasonId;
|
int? seasonId;
|
||||||
int? total;
|
int? total;
|
||||||
int? seriesId;
|
|
||||||
int? category;
|
|
||||||
|
|
||||||
MamberMeta.fromJson(Map<String, dynamic> json) {
|
MamberMeta.fromJson(Map<String, dynamic> json) {
|
||||||
cover = json['cover'];
|
cover = json['cover'];
|
||||||
@ -122,7 +104,5 @@ class MamberMeta {
|
|||||||
ptime = json['ptime'];
|
ptime = json['ptime'];
|
||||||
seasonId = json['season_id'];
|
seasonId = json['season_id'];
|
||||||
total = json['total'];
|
total = json['total'];
|
||||||
seriesId = json['series_id'];
|
|
||||||
category = json['category'];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,7 +23,6 @@ class HotVideoItemModel {
|
|||||||
this.dimension,
|
this.dimension,
|
||||||
this.shortLinkV2,
|
this.shortLinkV2,
|
||||||
this.firstFrame,
|
this.firstFrame,
|
||||||
this.cover,
|
|
||||||
this.pubLocation,
|
this.pubLocation,
|
||||||
this.seasontype,
|
this.seasontype,
|
||||||
this.isOgv,
|
this.isOgv,
|
||||||
@ -51,7 +50,6 @@ class HotVideoItemModel {
|
|||||||
Dimension? dimension;
|
Dimension? dimension;
|
||||||
String? shortLinkV2;
|
String? shortLinkV2;
|
||||||
String? firstFrame;
|
String? firstFrame;
|
||||||
String? cover;
|
|
||||||
String? pubLocation;
|
String? pubLocation;
|
||||||
int? seasontype;
|
int? seasontype;
|
||||||
bool? isOgv;
|
bool? isOgv;
|
||||||
@ -79,7 +77,6 @@ class HotVideoItemModel {
|
|||||||
dimension = Dimension.fromMap(json['dimension']);
|
dimension = Dimension.fromMap(json['dimension']);
|
||||||
shortLinkV2 = json["short_link_v2"];
|
shortLinkV2 = json["short_link_v2"];
|
||||||
firstFrame = json["first_frame"];
|
firstFrame = json["first_frame"];
|
||||||
cover = json["first_frame"];
|
|
||||||
pubLocation = json["pub_location"];
|
pubLocation = json["pub_location"];
|
||||||
seasontype = json["seasontype"];
|
seasontype = json["seasontype"];
|
||||||
isOgv = json["isOgv"];
|
isOgv = json["isOgv"];
|
||||||
|
|||||||
@ -1,12 +1,19 @@
|
|||||||
|
import 'package:hive/hive.dart';
|
||||||
|
|
||||||
|
part 'model_owner.g.dart';
|
||||||
|
|
||||||
|
@HiveType(typeId: 3)
|
||||||
class Owner {
|
class Owner {
|
||||||
Owner({
|
Owner({
|
||||||
this.mid,
|
this.mid,
|
||||||
this.name,
|
this.name,
|
||||||
this.face,
|
this.face,
|
||||||
});
|
});
|
||||||
|
@HiveField(0)
|
||||||
int? mid;
|
int? mid;
|
||||||
|
@HiveField(1)
|
||||||
String? name;
|
String? name;
|
||||||
|
@HiveField(2)
|
||||||
String? face;
|
String? face;
|
||||||
|
|
||||||
Owner.fromJson(Map<String, dynamic> json) {
|
Owner.fromJson(Map<String, dynamic> json) {
|
||||||
|
|||||||
47
lib/models/model_owner.g.dart
Normal file
47
lib/models/model_owner.g.dart
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||||
|
|
||||||
|
part of 'model_owner.dart';
|
||||||
|
|
||||||
|
// **************************************************************************
|
||||||
|
// TypeAdapterGenerator
|
||||||
|
// **************************************************************************
|
||||||
|
|
||||||
|
class OwnerAdapter extends TypeAdapter<Owner> {
|
||||||
|
@override
|
||||||
|
final int typeId = 3;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Owner read(BinaryReader reader) {
|
||||||
|
final numOfFields = reader.readByte();
|
||||||
|
final fields = <int, dynamic>{
|
||||||
|
for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
|
||||||
|
};
|
||||||
|
return Owner(
|
||||||
|
mid: fields[0] as int?,
|
||||||
|
name: fields[1] as String?,
|
||||||
|
face: fields[2] as String?,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void write(BinaryWriter writer, Owner obj) {
|
||||||
|
writer
|
||||||
|
..writeByte(3)
|
||||||
|
..writeByte(0)
|
||||||
|
..write(obj.mid)
|
||||||
|
..writeByte(1)
|
||||||
|
..write(obj.name)
|
||||||
|
..writeByte(2)
|
||||||
|
..write(obj.face);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
int get hashCode => typeId.hashCode;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool operator ==(Object other) =>
|
||||||
|
identical(this, other) ||
|
||||||
|
other is OwnerAdapter &&
|
||||||
|
runtimeType == other.runtimeType &&
|
||||||
|
typeId == other.typeId;
|
||||||
|
}
|
||||||
@ -1,5 +1,11 @@
|
|||||||
import './model_owner.dart';
|
import 'package:pilipala/utils/utils.dart';
|
||||||
|
|
||||||
|
import './model_owner.dart';
|
||||||
|
import 'package:hive/hive.dart';
|
||||||
|
|
||||||
|
part 'model_rec_video_item.g.dart';
|
||||||
|
|
||||||
|
@HiveType(typeId: 0)
|
||||||
class RecVideoItemModel {
|
class RecVideoItemModel {
|
||||||
RecVideoItemModel({
|
RecVideoItemModel({
|
||||||
this.id,
|
this.id,
|
||||||
@ -17,19 +23,32 @@ class RecVideoItemModel {
|
|||||||
this.rcmdReason,
|
this.rcmdReason,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@HiveField(0)
|
||||||
int? id = -1;
|
int? id = -1;
|
||||||
|
@HiveField(1)
|
||||||
String? bvid = '';
|
String? bvid = '';
|
||||||
|
@HiveField(2)
|
||||||
int? cid = -1;
|
int? cid = -1;
|
||||||
|
@HiveField(3)
|
||||||
String? goto = '';
|
String? goto = '';
|
||||||
|
@HiveField(4)
|
||||||
String? uri = '';
|
String? uri = '';
|
||||||
|
@HiveField(5)
|
||||||
String? pic = '';
|
String? pic = '';
|
||||||
|
@HiveField(6)
|
||||||
String? title = '';
|
String? title = '';
|
||||||
int? duration = -1;
|
@HiveField(7)
|
||||||
|
String? duration = '';
|
||||||
|
@HiveField(8)
|
||||||
int? pubdate = -1;
|
int? pubdate = -1;
|
||||||
|
@HiveField(9)
|
||||||
Owner? owner;
|
Owner? owner;
|
||||||
|
@HiveField(10)
|
||||||
Stat? stat;
|
Stat? stat;
|
||||||
|
@HiveField(11)
|
||||||
int? isFollowed;
|
int? isFollowed;
|
||||||
String? rcmdReason;
|
@HiveField(12)
|
||||||
|
RcmdReason? rcmdReason;
|
||||||
|
|
||||||
RecVideoItemModel.fromJson(Map<String, dynamic> json) {
|
RecVideoItemModel.fromJson(Map<String, dynamic> json) {
|
||||||
id = json["id"];
|
id = json["id"];
|
||||||
@ -39,29 +58,51 @@ class RecVideoItemModel {
|
|||||||
uri = json["uri"];
|
uri = json["uri"];
|
||||||
pic = json["pic"];
|
pic = json["pic"];
|
||||||
title = json["title"];
|
title = json["title"];
|
||||||
duration = json["duration"];
|
duration = Utils.tampToSeektime(json["duration"]);
|
||||||
pubdate = json["pubdate"];
|
pubdate = json["pubdate"];
|
||||||
owner = Owner.fromJson(json["owner"]);
|
owner = Owner.fromJson(json["owner"]);
|
||||||
stat = Stat.fromJson(json["stat"]);
|
stat = Stat.fromJson(json["stat"]);
|
||||||
isFollowed = json["is_followed"] ?? 0;
|
isFollowed = json["is_followed"] ?? 0;
|
||||||
rcmdReason = json["rcmd_reason"]?['content'];
|
rcmdReason = json["rcmd_reason"] != null
|
||||||
|
? RcmdReason.fromJson(json["rcmd_reason"])
|
||||||
|
: RcmdReason(content: '');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@HiveType(typeId: 1)
|
||||||
class Stat {
|
class Stat {
|
||||||
Stat({
|
Stat({
|
||||||
this.view,
|
this.view,
|
||||||
this.like,
|
this.like,
|
||||||
this.danmu,
|
this.danmu,
|
||||||
});
|
});
|
||||||
|
@HiveField(0)
|
||||||
int? view;
|
String? view;
|
||||||
|
@HiveField(1)
|
||||||
int? like;
|
int? like;
|
||||||
|
@HiveField(2)
|
||||||
int? danmu;
|
int? danmu;
|
||||||
|
|
||||||
Stat.fromJson(Map<String, dynamic> json) {
|
Stat.fromJson(Map<String, dynamic> json) {
|
||||||
// 无需在model中转换以保留原始数据,在view层处理即可
|
view = Utils.numFormat(json["view"]);
|
||||||
view = json["view"];
|
|
||||||
like = json["like"];
|
like = json["like"];
|
||||||
danmu = json['danmaku'];
|
danmu = json['danmaku'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@HiveType(typeId: 2)
|
||||||
|
class RcmdReason {
|
||||||
|
RcmdReason({
|
||||||
|
this.reasonType,
|
||||||
|
this.content,
|
||||||
|
});
|
||||||
|
@HiveField(0)
|
||||||
|
int? reasonType;
|
||||||
|
@HiveField(1)
|
||||||
|
String? content = '';
|
||||||
|
|
||||||
|
RcmdReason.fromJson(Map<String, dynamic> json) {
|
||||||
|
reasonType = json["reason_type"];
|
||||||
|
content = json["content"] ?? '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
154
lib/models/model_rec_video_item.g.dart
Normal file
154
lib/models/model_rec_video_item.g.dart
Normal file
@ -0,0 +1,154 @@
|
|||||||
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||||
|
|
||||||
|
part of 'model_rec_video_item.dart';
|
||||||
|
|
||||||
|
// **************************************************************************
|
||||||
|
// TypeAdapterGenerator
|
||||||
|
// **************************************************************************
|
||||||
|
|
||||||
|
class RecVideoItemModelAdapter extends TypeAdapter<RecVideoItemModel> {
|
||||||
|
@override
|
||||||
|
final int typeId = 0;
|
||||||
|
|
||||||
|
@override
|
||||||
|
RecVideoItemModel read(BinaryReader reader) {
|
||||||
|
final numOfFields = reader.readByte();
|
||||||
|
final fields = <int, dynamic>{
|
||||||
|
for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
|
||||||
|
};
|
||||||
|
return RecVideoItemModel(
|
||||||
|
id: fields[0] as int?,
|
||||||
|
bvid: fields[1] as String?,
|
||||||
|
cid: fields[2] as int?,
|
||||||
|
goto: fields[3] as String?,
|
||||||
|
uri: fields[4] as String?,
|
||||||
|
pic: fields[5] as String?,
|
||||||
|
title: fields[6] as String?,
|
||||||
|
duration: fields[7] as String?,
|
||||||
|
pubdate: fields[8] as int?,
|
||||||
|
owner: fields[9] as Owner?,
|
||||||
|
stat: fields[10] as Stat?,
|
||||||
|
isFollowed: fields[11] as int?,
|
||||||
|
rcmdReason: fields[12] as RcmdReason?,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void write(BinaryWriter writer, RecVideoItemModel obj) {
|
||||||
|
writer
|
||||||
|
..writeByte(13)
|
||||||
|
..writeByte(0)
|
||||||
|
..write(obj.id)
|
||||||
|
..writeByte(1)
|
||||||
|
..write(obj.bvid)
|
||||||
|
..writeByte(2)
|
||||||
|
..write(obj.cid)
|
||||||
|
..writeByte(3)
|
||||||
|
..write(obj.goto)
|
||||||
|
..writeByte(4)
|
||||||
|
..write(obj.uri)
|
||||||
|
..writeByte(5)
|
||||||
|
..write(obj.pic)
|
||||||
|
..writeByte(6)
|
||||||
|
..write(obj.title)
|
||||||
|
..writeByte(7)
|
||||||
|
..write(obj.duration)
|
||||||
|
..writeByte(8)
|
||||||
|
..write(obj.pubdate)
|
||||||
|
..writeByte(9)
|
||||||
|
..write(obj.owner)
|
||||||
|
..writeByte(10)
|
||||||
|
..write(obj.stat)
|
||||||
|
..writeByte(11)
|
||||||
|
..write(obj.isFollowed)
|
||||||
|
..writeByte(12)
|
||||||
|
..write(obj.rcmdReason);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
int get hashCode => typeId.hashCode;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool operator ==(Object other) =>
|
||||||
|
identical(this, other) ||
|
||||||
|
other is RecVideoItemModelAdapter &&
|
||||||
|
runtimeType == other.runtimeType &&
|
||||||
|
typeId == other.typeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
class StatAdapter extends TypeAdapter<Stat> {
|
||||||
|
@override
|
||||||
|
final int typeId = 1;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Stat read(BinaryReader reader) {
|
||||||
|
final numOfFields = reader.readByte();
|
||||||
|
final fields = <int, dynamic>{
|
||||||
|
for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
|
||||||
|
};
|
||||||
|
return Stat(
|
||||||
|
view: fields[0] as String?,
|
||||||
|
like: fields[1] as int?,
|
||||||
|
danmu: fields[2] as int?,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void write(BinaryWriter writer, Stat obj) {
|
||||||
|
writer
|
||||||
|
..writeByte(3)
|
||||||
|
..writeByte(0)
|
||||||
|
..write(obj.view)
|
||||||
|
..writeByte(1)
|
||||||
|
..write(obj.like)
|
||||||
|
..writeByte(2)
|
||||||
|
..write(obj.danmu);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
int get hashCode => typeId.hashCode;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool operator ==(Object other) =>
|
||||||
|
identical(this, other) ||
|
||||||
|
other is StatAdapter &&
|
||||||
|
runtimeType == other.runtimeType &&
|
||||||
|
typeId == other.typeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
class RcmdReasonAdapter extends TypeAdapter<RcmdReason> {
|
||||||
|
@override
|
||||||
|
final int typeId = 2;
|
||||||
|
|
||||||
|
@override
|
||||||
|
RcmdReason read(BinaryReader reader) {
|
||||||
|
final numOfFields = reader.readByte();
|
||||||
|
final fields = <int, dynamic>{
|
||||||
|
for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
|
||||||
|
};
|
||||||
|
return RcmdReason(
|
||||||
|
reasonType: fields[0] as int?,
|
||||||
|
content: fields[1] as String?,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void write(BinaryWriter writer, RcmdReason obj) {
|
||||||
|
writer
|
||||||
|
..writeByte(2)
|
||||||
|
..writeByte(0)
|
||||||
|
..write(obj.reasonType)
|
||||||
|
..writeByte(1)
|
||||||
|
..write(obj.content);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
int get hashCode => typeId.hashCode;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool operator ==(Object other) =>
|
||||||
|
identical(this, other) ||
|
||||||
|
other is RcmdReasonAdapter &&
|
||||||
|
runtimeType == other.runtimeType &&
|
||||||
|
typeId == other.typeId;
|
||||||
|
}
|
||||||
@ -1,183 +0,0 @@
|
|||||||
class MessageLikeModel {
|
|
||||||
MessageLikeModel({
|
|
||||||
this.latest,
|
|
||||||
this.total,
|
|
||||||
});
|
|
||||||
|
|
||||||
Latest? latest;
|
|
||||||
Total? total;
|
|
||||||
|
|
||||||
factory MessageLikeModel.fromJson(Map<String, dynamic> json) =>
|
|
||||||
MessageLikeModel(
|
|
||||||
latest: json["latest"] == null ? null : Latest.fromJson(json["latest"]),
|
|
||||||
total: json["total"] == null ? null : Total.fromJson(json["total"]),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Latest {
|
|
||||||
Latest({
|
|
||||||
this.items,
|
|
||||||
this.lastViewAt,
|
|
||||||
});
|
|
||||||
|
|
||||||
List? items;
|
|
||||||
int? lastViewAt;
|
|
||||||
|
|
||||||
factory Latest.fromJson(Map<String, dynamic> json) => Latest(
|
|
||||||
items: json["items"],
|
|
||||||
lastViewAt: json["last_view_at"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Total {
|
|
||||||
Total({
|
|
||||||
this.cursor,
|
|
||||||
this.items,
|
|
||||||
});
|
|
||||||
|
|
||||||
Cursor? cursor;
|
|
||||||
List<MessageLikeItem>? items;
|
|
||||||
|
|
||||||
factory Total.fromJson(Map<String, dynamic> json) => Total(
|
|
||||||
cursor: Cursor.fromJson(json['cursor']),
|
|
||||||
items: json["items"] == null
|
|
||||||
? []
|
|
||||||
: json["items"].map<MessageLikeItem>((e) {
|
|
||||||
return MessageLikeItem.fromJson(e);
|
|
||||||
}).toList(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Cursor {
|
|
||||||
Cursor({
|
|
||||||
this.id,
|
|
||||||
this.isEnd,
|
|
||||||
this.time,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? id;
|
|
||||||
bool? isEnd;
|
|
||||||
int? time;
|
|
||||||
|
|
||||||
factory Cursor.fromJson(Map<String, dynamic> json) => Cursor(
|
|
||||||
id: json['id'],
|
|
||||||
isEnd: json['is_end'],
|
|
||||||
time: json['time'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class MessageLikeItem {
|
|
||||||
MessageLikeItem({
|
|
||||||
this.id,
|
|
||||||
this.users,
|
|
||||||
this.item,
|
|
||||||
this.counts,
|
|
||||||
this.likeTime,
|
|
||||||
this.noticeState,
|
|
||||||
this.isExpand = false,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? id;
|
|
||||||
List<MessageLikeUser>? users;
|
|
||||||
MessageLikeItemItem? item;
|
|
||||||
int? counts;
|
|
||||||
int? likeTime;
|
|
||||||
int? noticeState;
|
|
||||||
bool isExpand;
|
|
||||||
|
|
||||||
factory MessageLikeItem.fromJson(Map<String, dynamic> json) =>
|
|
||||||
MessageLikeItem(
|
|
||||||
id: json["id"],
|
|
||||||
users: json["users"] == null
|
|
||||||
? []
|
|
||||||
: json["users"].map<MessageLikeUser>((e) {
|
|
||||||
return MessageLikeUser.fromJson(e);
|
|
||||||
}).toList(),
|
|
||||||
item: json["item"] == null
|
|
||||||
? null
|
|
||||||
: MessageLikeItemItem.fromJson(json["item"]),
|
|
||||||
counts: json["counts"],
|
|
||||||
likeTime: json["like_time"],
|
|
||||||
noticeState: json["notice_state"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class MessageLikeUser {
|
|
||||||
MessageLikeUser({
|
|
||||||
this.mid,
|
|
||||||
this.fans,
|
|
||||||
this.nickname,
|
|
||||||
this.avatar,
|
|
||||||
this.midLink,
|
|
||||||
this.follow,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? mid;
|
|
||||||
int? fans;
|
|
||||||
String? nickname;
|
|
||||||
String? avatar;
|
|
||||||
String? midLink;
|
|
||||||
bool? follow;
|
|
||||||
|
|
||||||
factory MessageLikeUser.fromJson(Map<String, dynamic> json) =>
|
|
||||||
MessageLikeUser(
|
|
||||||
mid: json["mid"],
|
|
||||||
fans: json["fans"],
|
|
||||||
nickname: json["nickname"],
|
|
||||||
avatar: json["avatar"],
|
|
||||||
midLink: json["mid_link"],
|
|
||||||
follow: json["follow"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class MessageLikeItemItem {
|
|
||||||
MessageLikeItemItem({
|
|
||||||
this.itemId,
|
|
||||||
this.pid,
|
|
||||||
this.type,
|
|
||||||
this.business,
|
|
||||||
this.businessId,
|
|
||||||
this.replyBusinessId,
|
|
||||||
this.likeBusinessId,
|
|
||||||
this.title,
|
|
||||||
this.desc,
|
|
||||||
this.image,
|
|
||||||
this.uri,
|
|
||||||
this.detailName,
|
|
||||||
this.nativeUri,
|
|
||||||
this.ctime,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? itemId;
|
|
||||||
int? pid;
|
|
||||||
String? type;
|
|
||||||
String? business;
|
|
||||||
int? businessId;
|
|
||||||
int? replyBusinessId;
|
|
||||||
int? likeBusinessId;
|
|
||||||
String? title;
|
|
||||||
String? desc;
|
|
||||||
String? image;
|
|
||||||
String? uri;
|
|
||||||
String? detailName;
|
|
||||||
String? nativeUri;
|
|
||||||
int? ctime;
|
|
||||||
|
|
||||||
factory MessageLikeItemItem.fromJson(Map<String, dynamic> json) =>
|
|
||||||
MessageLikeItemItem(
|
|
||||||
itemId: json["item_id"],
|
|
||||||
pid: json["pid"],
|
|
||||||
type: json["type"],
|
|
||||||
business: json["business"],
|
|
||||||
businessId: json["business_id"],
|
|
||||||
replyBusinessId: json["reply_business_id"],
|
|
||||||
likeBusinessId: json["like_business_id"],
|
|
||||||
title: json["title"],
|
|
||||||
desc: json["desc"],
|
|
||||||
image: json["image"],
|
|
||||||
uri: json["uri"],
|
|
||||||
detailName: json["detail_name"],
|
|
||||||
nativeUri: json["native_uri"],
|
|
||||||
ctime: json["ctime"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,168 +0,0 @@
|
|||||||
class MessageReplyModel {
|
|
||||||
MessageReplyModel({
|
|
||||||
this.cursor,
|
|
||||||
this.items,
|
|
||||||
});
|
|
||||||
|
|
||||||
Cursor? cursor;
|
|
||||||
List<MessageReplyItem>? items;
|
|
||||||
|
|
||||||
MessageReplyModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
cursor = Cursor.fromJson(json['cursor']);
|
|
||||||
items = json["items"] != null
|
|
||||||
? json["items"].map<MessageReplyItem>((e) {
|
|
||||||
return MessageReplyItem.fromJson(e);
|
|
||||||
}).toList()
|
|
||||||
: [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Cursor {
|
|
||||||
Cursor({
|
|
||||||
this.id,
|
|
||||||
this.isEnd,
|
|
||||||
this.time,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? id;
|
|
||||||
bool? isEnd;
|
|
||||||
int? time;
|
|
||||||
|
|
||||||
Cursor.fromJson(Map<String, dynamic> json) {
|
|
||||||
id = json['id'];
|
|
||||||
isEnd = json['is_end'];
|
|
||||||
time = json['time'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class MessageReplyItem {
|
|
||||||
MessageReplyItem({
|
|
||||||
this.count,
|
|
||||||
this.id,
|
|
||||||
this.isMulti,
|
|
||||||
this.item,
|
|
||||||
this.replyTime,
|
|
||||||
this.user,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? count;
|
|
||||||
int? id;
|
|
||||||
int? isMulti;
|
|
||||||
ReplyContentItem? item;
|
|
||||||
int? replyTime;
|
|
||||||
ReplyUser? user;
|
|
||||||
|
|
||||||
MessageReplyItem.fromJson(Map<String, dynamic> json) {
|
|
||||||
count = json['count'];
|
|
||||||
id = json['id'];
|
|
||||||
isMulti = json['is_multi'];
|
|
||||||
item = ReplyContentItem.fromJson(json["item"]);
|
|
||||||
replyTime = json['reply_time'];
|
|
||||||
user = ReplyUser.fromJson(json['user']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ReplyContentItem {
|
|
||||||
ReplyContentItem({
|
|
||||||
this.subjectId,
|
|
||||||
this.rootId,
|
|
||||||
this.sourceId,
|
|
||||||
this.targetId,
|
|
||||||
this.type,
|
|
||||||
this.businessId,
|
|
||||||
this.business,
|
|
||||||
this.title,
|
|
||||||
this.desc,
|
|
||||||
this.image,
|
|
||||||
this.uri,
|
|
||||||
this.nativeUri,
|
|
||||||
this.detailTitle,
|
|
||||||
this.rootReplyContent,
|
|
||||||
this.sourceContent,
|
|
||||||
this.targetReplyContent,
|
|
||||||
this.atDetails,
|
|
||||||
this.topicDetails,
|
|
||||||
this.hideReplyButton,
|
|
||||||
this.hideLikeButton,
|
|
||||||
this.likeState,
|
|
||||||
this.danmu,
|
|
||||||
this.message,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? subjectId;
|
|
||||||
int? rootId;
|
|
||||||
int? sourceId;
|
|
||||||
int? targetId;
|
|
||||||
String? type;
|
|
||||||
int? businessId;
|
|
||||||
String? business;
|
|
||||||
String? title;
|
|
||||||
String? desc;
|
|
||||||
String? image;
|
|
||||||
String? uri;
|
|
||||||
String? nativeUri;
|
|
||||||
String? detailTitle;
|
|
||||||
String? rootReplyContent;
|
|
||||||
String? sourceContent;
|
|
||||||
String? targetReplyContent;
|
|
||||||
List? atDetails;
|
|
||||||
List? topicDetails;
|
|
||||||
bool? hideReplyButton;
|
|
||||||
bool? hideLikeButton;
|
|
||||||
int? likeState;
|
|
||||||
String? danmu;
|
|
||||||
String? message;
|
|
||||||
|
|
||||||
ReplyContentItem.fromJson(Map<String, dynamic> json) {
|
|
||||||
subjectId = json['subject_id'];
|
|
||||||
rootId = json['root_id'];
|
|
||||||
sourceId = json['source_id'];
|
|
||||||
targetId = json['target_id'];
|
|
||||||
type = json['type'];
|
|
||||||
businessId = json['business_id'];
|
|
||||||
business = json['business'];
|
|
||||||
title = json['title'];
|
|
||||||
desc = json['desc'];
|
|
||||||
image = json['image'];
|
|
||||||
uri = json['uri'];
|
|
||||||
nativeUri = json['native_uri'];
|
|
||||||
detailTitle = json['detail_title'];
|
|
||||||
rootReplyContent = json['root_reply_content'];
|
|
||||||
sourceContent = json['source_content'];
|
|
||||||
targetReplyContent = json['target_reply_content'];
|
|
||||||
atDetails = json['at_details'];
|
|
||||||
topicDetails = json['topic_details'];
|
|
||||||
hideReplyButton = json['hide_reply_button'];
|
|
||||||
hideLikeButton = json['hide_like_button'];
|
|
||||||
likeState = json['like_state'];
|
|
||||||
danmu = json['danmu'];
|
|
||||||
message = json['message'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ReplyUser {
|
|
||||||
ReplyUser({
|
|
||||||
this.mid,
|
|
||||||
this.fans,
|
|
||||||
this.nickname,
|
|
||||||
this.avatar,
|
|
||||||
this.midLink,
|
|
||||||
this.follow,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? mid;
|
|
||||||
int? fans;
|
|
||||||
String? nickname;
|
|
||||||
String? avatar;
|
|
||||||
String? midLink;
|
|
||||||
bool? follow;
|
|
||||||
|
|
||||||
ReplyUser.fromJson(Map<String, dynamic> json) {
|
|
||||||
mid = json['mid'];
|
|
||||||
fans = json['fans'];
|
|
||||||
nickname = json['nickname'];
|
|
||||||
avatar = json['avatar'];
|
|
||||||
midLink = json['mid_link'];
|
|
||||||
follow = json['follow'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -8,7 +8,7 @@ class SessionDataModel {
|
|||||||
this.hasMore,
|
this.hasMore,
|
||||||
});
|
});
|
||||||
|
|
||||||
List<SessionList>? sessionList;
|
List? sessionList;
|
||||||
int? hasMore;
|
int? hasMore;
|
||||||
|
|
||||||
SessionDataModel.fromJson(Map<String, dynamic> json) {
|
SessionDataModel.fromJson(Map<String, dynamic> json) {
|
||||||
@ -121,37 +121,35 @@ class LastMsg {
|
|||||||
this.msgKey,
|
this.msgKey,
|
||||||
this.msgStatus,
|
this.msgStatus,
|
||||||
this.notifyCode,
|
this.notifyCode,
|
||||||
// this.newFaceVersion,
|
this.newFaceVersion,
|
||||||
});
|
});
|
||||||
|
|
||||||
int? senderIid;
|
int? senderIid;
|
||||||
int? receiverType;
|
int? receiverType;
|
||||||
int? receiverId;
|
int? receiverId;
|
||||||
int? msgType;
|
int? msgType;
|
||||||
dynamic content;
|
Map? content;
|
||||||
int? msgSeqno;
|
int? msgSeqno;
|
||||||
int? timestamp;
|
int? timestamp;
|
||||||
String? atUids;
|
String? atUids;
|
||||||
int? msgKey;
|
int? msgKey;
|
||||||
int? msgStatus;
|
int? msgStatus;
|
||||||
String? notifyCode;
|
String? notifyCode;
|
||||||
// int? newFaceVersion;
|
int? newFaceVersion;
|
||||||
|
|
||||||
LastMsg.fromJson(Map<String, dynamic> json) {
|
LastMsg.fromJson(Map<String, dynamic> json) {
|
||||||
senderIid = json['sender_uid'];
|
senderIid = json['sender_uid'];
|
||||||
receiverType = json['receiver_type'];
|
receiverType = json['receiver_type'];
|
||||||
receiverId = json['receiver_id'];
|
receiverId = json['receiver_id'];
|
||||||
msgType = json['msg_type'];
|
msgType = json['msg_type'];
|
||||||
content = json['content'] != null && json['content'] != ''
|
content = jsonDecode(json['content']);
|
||||||
? jsonDecode(json['content'])
|
|
||||||
: '';
|
|
||||||
msgSeqno = json['msg_seqno'];
|
msgSeqno = json['msg_seqno'];
|
||||||
timestamp = json['timestamp'];
|
timestamp = json['timestamp'];
|
||||||
atUids = json['at_uids'];
|
atUids = json['at_uids'];
|
||||||
msgKey = json['msg_key'];
|
msgKey = json['msg_key'];
|
||||||
msgStatus = json['msg_status'];
|
msgStatus = json['msg_status'];
|
||||||
notifyCode = json['notify_code'];
|
notifyCode = json['notify_code'];
|
||||||
// newFaceVersion = json['new_face_version'];
|
newFaceVersion = json['new_face_version'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -216,9 +214,7 @@ class MessageItem {
|
|||||||
receiverId = json['receiver_id'];
|
receiverId = json['receiver_id'];
|
||||||
// 1 文本 2 图片 18 系统提示 10 系统通知 5 撤回的消息
|
// 1 文本 2 图片 18 系统提示 10 系统通知 5 撤回的消息
|
||||||
msgType = json['msg_type'];
|
msgType = json['msg_type'];
|
||||||
content = json['content'] != null && json['content'] != ''
|
content = jsonDecode(json['content']);
|
||||||
? jsonDecode(json['content'])
|
|
||||||
: '';
|
|
||||||
msgSeqno = json['msg_seqno'];
|
msgSeqno = json['msg_seqno'];
|
||||||
timestamp = json['timestamp'];
|
timestamp = json['timestamp'];
|
||||||
atUids = json['at_uids'];
|
atUids = json['at_uids'];
|
||||||
|
|||||||
@ -1,88 +0,0 @@
|
|||||||
import 'dart:convert';
|
|
||||||
|
|
||||||
class MessageSystemModel {
|
|
||||||
int? id;
|
|
||||||
int? cursor;
|
|
||||||
int? type;
|
|
||||||
String? title;
|
|
||||||
dynamic content;
|
|
||||||
Source? source;
|
|
||||||
String? timeAt;
|
|
||||||
int? cardType;
|
|
||||||
String? cardBrief;
|
|
||||||
String? cardMsgBrief;
|
|
||||||
String? cardCover;
|
|
||||||
String? cardStoryTitle;
|
|
||||||
String? cardLink;
|
|
||||||
String? mc;
|
|
||||||
int? isStation;
|
|
||||||
int? isSend;
|
|
||||||
int? notifyCursor;
|
|
||||||
|
|
||||||
MessageSystemModel({
|
|
||||||
this.id,
|
|
||||||
this.cursor,
|
|
||||||
this.type,
|
|
||||||
this.title,
|
|
||||||
this.content,
|
|
||||||
this.source,
|
|
||||||
this.timeAt,
|
|
||||||
this.cardType,
|
|
||||||
this.cardBrief,
|
|
||||||
this.cardMsgBrief,
|
|
||||||
this.cardCover,
|
|
||||||
this.cardStoryTitle,
|
|
||||||
this.cardLink,
|
|
||||||
this.mc,
|
|
||||||
this.isStation,
|
|
||||||
this.isSend,
|
|
||||||
this.notifyCursor,
|
|
||||||
});
|
|
||||||
|
|
||||||
factory MessageSystemModel.fromJson(Map<String, dynamic> jsons) =>
|
|
||||||
MessageSystemModel(
|
|
||||||
id: jsons["id"],
|
|
||||||
cursor: jsons["cursor"],
|
|
||||||
type: jsons["type"],
|
|
||||||
title: jsons["title"],
|
|
||||||
content: isValidJson(jsons["content"])
|
|
||||||
? json.decode(jsons["content"])
|
|
||||||
: jsons["content"],
|
|
||||||
source: Source.fromJson(jsons["source"]),
|
|
||||||
timeAt: jsons["time_at"],
|
|
||||||
cardType: jsons["card_type"],
|
|
||||||
cardBrief: jsons["card_brief"],
|
|
||||||
cardMsgBrief: jsons["card_msg_brief"],
|
|
||||||
cardCover: jsons["card_cover"],
|
|
||||||
cardStoryTitle: jsons["card_story_title"],
|
|
||||||
cardLink: jsons["card_link"],
|
|
||||||
mc: jsons["mc"],
|
|
||||||
isStation: jsons["is_station"],
|
|
||||||
isSend: jsons["is_send"],
|
|
||||||
notifyCursor: jsons["notify_cursor"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Source {
|
|
||||||
String? name;
|
|
||||||
String? logo;
|
|
||||||
|
|
||||||
Source({
|
|
||||||
this.name,
|
|
||||||
this.logo,
|
|
||||||
});
|
|
||||||
|
|
||||||
factory Source.fromJson(Map<String, dynamic> json) => Source(
|
|
||||||
name: json["name"],
|
|
||||||
logo: json["logo"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isValidJson(String str) {
|
|
||||||
try {
|
|
||||||
json.decode(str);
|
|
||||||
} catch (e) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
@ -1,485 +0,0 @@
|
|||||||
class OpusDataModel {
|
|
||||||
OpusDataModel({
|
|
||||||
this.id,
|
|
||||||
this.detail,
|
|
||||||
this.type,
|
|
||||||
this.theme,
|
|
||||||
this.themeMode,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? id;
|
|
||||||
OpusDetailDataModel? detail;
|
|
||||||
int? type;
|
|
||||||
String? theme;
|
|
||||||
String? themeMode;
|
|
||||||
|
|
||||||
OpusDataModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
id = json['id'];
|
|
||||||
detail = json['detail'] != null
|
|
||||||
? OpusDetailDataModel.fromJson(json['detail'])
|
|
||||||
: null;
|
|
||||||
type = json['type'];
|
|
||||||
theme = json['theme'];
|
|
||||||
themeMode = json['themeMode'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class OpusDetailDataModel {
|
|
||||||
OpusDetailDataModel({
|
|
||||||
this.basic,
|
|
||||||
this.idStr,
|
|
||||||
this.modules,
|
|
||||||
this.type,
|
|
||||||
});
|
|
||||||
|
|
||||||
Basic? basic;
|
|
||||||
String? idStr;
|
|
||||||
List<OpusModuleDataModel>? modules;
|
|
||||||
int? type;
|
|
||||||
|
|
||||||
OpusDetailDataModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
basic = json['basic'] != null ? Basic.fromJson(json['basic']) : null;
|
|
||||||
idStr = json['id_str'];
|
|
||||||
if (json['modules'] != null) {
|
|
||||||
modules = <OpusModuleDataModel>[];
|
|
||||||
json['modules'].forEach((v) {
|
|
||||||
modules!.add(OpusModuleDataModel.fromJson(v));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
type = json['type'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Basic {
|
|
||||||
Basic({
|
|
||||||
this.commentIdStr,
|
|
||||||
this.commentType,
|
|
||||||
this.ridStr,
|
|
||||||
this.title,
|
|
||||||
this.uid,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? commentIdStr;
|
|
||||||
int? commentType;
|
|
||||||
String? ridStr;
|
|
||||||
String? title;
|
|
||||||
int? uid;
|
|
||||||
|
|
||||||
Basic.fromJson(Map<String, dynamic> json) {
|
|
||||||
commentIdStr = json['comment_id_str'];
|
|
||||||
commentType = json['comment_type'];
|
|
||||||
ridStr = json['rid_str'];
|
|
||||||
title = json['title'];
|
|
||||||
uid = json['uid'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class OpusModuleDataModel {
|
|
||||||
OpusModuleDataModel({
|
|
||||||
this.moduleTitle,
|
|
||||||
this.moduleAuthor,
|
|
||||||
this.moduleContent,
|
|
||||||
this.moduleExtend,
|
|
||||||
this.moduleBottom,
|
|
||||||
this.moduleStat,
|
|
||||||
});
|
|
||||||
|
|
||||||
ModuleTop? moduleTop;
|
|
||||||
ModuleTitle? moduleTitle;
|
|
||||||
ModuleAuthor? moduleAuthor;
|
|
||||||
ModuleContent? moduleContent;
|
|
||||||
ModuleExtend? moduleExtend;
|
|
||||||
ModuleBottom? moduleBottom;
|
|
||||||
ModuleStat? moduleStat;
|
|
||||||
|
|
||||||
OpusModuleDataModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
moduleTop = json['module_top'] != null
|
|
||||||
? ModuleTop.fromJson(json['module_top'])
|
|
||||||
: null;
|
|
||||||
moduleTitle = json['module_title'] != null
|
|
||||||
? ModuleTitle.fromJson(json['module_title'])
|
|
||||||
: null;
|
|
||||||
moduleAuthor = json['module_author'] != null
|
|
||||||
? ModuleAuthor.fromJson(json['module_author'])
|
|
||||||
: null;
|
|
||||||
moduleContent = json['module_content'] != null
|
|
||||||
? ModuleContent.fromJson(json['module_content'])
|
|
||||||
: null;
|
|
||||||
moduleExtend = json['module_extend'] != null
|
|
||||||
? ModuleExtend.fromJson(json['module_extend'])
|
|
||||||
: null;
|
|
||||||
moduleBottom = json['module_bottom'] != null
|
|
||||||
? ModuleBottom.fromJson(json['module_bottom'])
|
|
||||||
: null;
|
|
||||||
moduleStat = json['module_stat'] != null
|
|
||||||
? ModuleStat.fromJson(json['module_stat'])
|
|
||||||
: null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleTop {
|
|
||||||
ModuleTop({
|
|
||||||
this.type,
|
|
||||||
this.video,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? type;
|
|
||||||
Map? video;
|
|
||||||
|
|
||||||
ModuleTop.fromJson(Map<String, dynamic> json) {
|
|
||||||
type = json['type'];
|
|
||||||
video = json['video'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleTitle {
|
|
||||||
ModuleTitle({
|
|
||||||
this.text,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? text;
|
|
||||||
|
|
||||||
ModuleTitle.fromJson(Map<String, dynamic> json) {
|
|
||||||
text = json['text'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleAuthor {
|
|
||||||
ModuleAuthor({
|
|
||||||
this.face,
|
|
||||||
this.mid,
|
|
||||||
this.name,
|
|
||||||
this.pubTime,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? face;
|
|
||||||
int? mid;
|
|
||||||
String? name;
|
|
||||||
String? pubTime;
|
|
||||||
|
|
||||||
ModuleAuthor.fromJson(Map<String, dynamic> json) {
|
|
||||||
face = json['face'];
|
|
||||||
mid = json['mid'];
|
|
||||||
name = json['name'];
|
|
||||||
pubTime = json['pub_time'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleContent {
|
|
||||||
ModuleContent({
|
|
||||||
this.paragraphs,
|
|
||||||
this.moduleType,
|
|
||||||
});
|
|
||||||
|
|
||||||
List<ModuleParagraph>? paragraphs;
|
|
||||||
String? moduleType;
|
|
||||||
|
|
||||||
ModuleContent.fromJson(Map<String, dynamic> json) {
|
|
||||||
if (json['paragraphs'] != null) {
|
|
||||||
paragraphs = <ModuleParagraph>[];
|
|
||||||
json['paragraphs'].forEach((v) {
|
|
||||||
paragraphs!.add(ModuleParagraph.fromJson(v));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
moduleType = json['module_type'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleParagraph {
|
|
||||||
ModuleParagraph({
|
|
||||||
this.align,
|
|
||||||
this.paraType,
|
|
||||||
this.pic,
|
|
||||||
this.text,
|
|
||||||
});
|
|
||||||
|
|
||||||
// 0 左对齐 1 居中 2 右对齐
|
|
||||||
int? align;
|
|
||||||
int? paraType;
|
|
||||||
Pics? pic;
|
|
||||||
ModuleParagraphText? text;
|
|
||||||
LinkCard? linkCard;
|
|
||||||
|
|
||||||
ModuleParagraph.fromJson(Map<String, dynamic> json) {
|
|
||||||
align = json['align'];
|
|
||||||
paraType = json['para_type'] == null && json['link_card'] != null
|
|
||||||
? 3
|
|
||||||
: json['para_type'];
|
|
||||||
pic = json['pic'] != null ? Pics.fromJson(json['pic']) : null;
|
|
||||||
text = json['text'] != null
|
|
||||||
? ModuleParagraphText.fromJson(json['text'])
|
|
||||||
: null;
|
|
||||||
linkCard =
|
|
||||||
json['link_card'] != null ? LinkCard.fromJson(json['link_card']) : null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Pics {
|
|
||||||
Pics({
|
|
||||||
this.pics,
|
|
||||||
this.style,
|
|
||||||
});
|
|
||||||
|
|
||||||
List<Pic>? pics;
|
|
||||||
int? style;
|
|
||||||
|
|
||||||
Pics.fromJson(Map<String, dynamic> json) {
|
|
||||||
if (json['pics'] != null) {
|
|
||||||
pics = <Pic>[];
|
|
||||||
json['pics'].forEach((v) {
|
|
||||||
pics!.add(Pic.fromJson(v));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
style = json['style'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Pic {
|
|
||||||
Pic({
|
|
||||||
this.height,
|
|
||||||
this.size,
|
|
||||||
this.url,
|
|
||||||
this.width,
|
|
||||||
this.aspectRatio,
|
|
||||||
this.scale,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? height;
|
|
||||||
double? size;
|
|
||||||
String? url;
|
|
||||||
int? width;
|
|
||||||
double? aspectRatio;
|
|
||||||
double? scale;
|
|
||||||
|
|
||||||
Pic.fromJson(Map<String, dynamic> json) {
|
|
||||||
height = json['height'];
|
|
||||||
size = json['size'];
|
|
||||||
url = json['url'];
|
|
||||||
width = json['width'];
|
|
||||||
aspectRatio = json['width'] / json['height'];
|
|
||||||
scale = customDivision(json['width'], 600);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class LinkCard {
|
|
||||||
LinkCard({
|
|
||||||
this.cover,
|
|
||||||
this.descSecond,
|
|
||||||
this.duration,
|
|
||||||
this.jumpUrl,
|
|
||||||
this.title,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? cover;
|
|
||||||
String? descSecond;
|
|
||||||
String? duration;
|
|
||||||
String? jumpUrl;
|
|
||||||
String? title;
|
|
||||||
|
|
||||||
LinkCard.fromJson(Map<String, dynamic> json) {
|
|
||||||
cover = json['card']['cover'];
|
|
||||||
descSecond = json['card']['desc_second'];
|
|
||||||
duration = json['card']['duration'];
|
|
||||||
jumpUrl = json['card']['jump_url'];
|
|
||||||
title = json['card']['title'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleParagraphText {
|
|
||||||
ModuleParagraphText({
|
|
||||||
this.nodes,
|
|
||||||
});
|
|
||||||
|
|
||||||
List<ModuleParagraphTextNode>? nodes;
|
|
||||||
|
|
||||||
ModuleParagraphText.fromJson(Map<String, dynamic> json) {
|
|
||||||
if (json['nodes'] != null) {
|
|
||||||
nodes = <ModuleParagraphTextNode>[];
|
|
||||||
json['nodes'].forEach((v) {
|
|
||||||
nodes!.add(ModuleParagraphTextNode.fromJson(v));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleParagraphTextNode {
|
|
||||||
ModuleParagraphTextNode({
|
|
||||||
this.type,
|
|
||||||
this.nodeType,
|
|
||||||
this.word,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? type;
|
|
||||||
int? nodeType;
|
|
||||||
ModuleParagraphTextNodeWord? word;
|
|
||||||
|
|
||||||
ModuleParagraphTextNode.fromJson(Map<String, dynamic> json) {
|
|
||||||
type = json['type'];
|
|
||||||
nodeType = json['node_type'];
|
|
||||||
word = json['word'] != null
|
|
||||||
? ModuleParagraphTextNodeWord.fromJson(json['word'])
|
|
||||||
: null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleParagraphTextNodeWord {
|
|
||||||
ModuleParagraphTextNodeWord({
|
|
||||||
this.color,
|
|
||||||
this.fontSize,
|
|
||||||
this.style,
|
|
||||||
this.words,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? color;
|
|
||||||
int? fontSize;
|
|
||||||
ModuleParagraphTextNodeWordStyle? style;
|
|
||||||
String? words;
|
|
||||||
|
|
||||||
ModuleParagraphTextNodeWord.fromJson(Map<String, dynamic> json) {
|
|
||||||
color = json['color'];
|
|
||||||
fontSize = json['font_size'];
|
|
||||||
style = json['style'] != null
|
|
||||||
? ModuleParagraphTextNodeWordStyle.fromJson(json['style'])
|
|
||||||
: null;
|
|
||||||
words = json['words'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleParagraphTextNodeWordStyle {
|
|
||||||
ModuleParagraphTextNodeWordStyle({
|
|
||||||
this.bold,
|
|
||||||
});
|
|
||||||
|
|
||||||
bool? bold;
|
|
||||||
|
|
||||||
ModuleParagraphTextNodeWordStyle.fromJson(Map<String, dynamic> json) {
|
|
||||||
bold = json['bold'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleExtend {
|
|
||||||
ModuleExtend({
|
|
||||||
this.items,
|
|
||||||
});
|
|
||||||
|
|
||||||
List<ModuleExtendItem>? items;
|
|
||||||
|
|
||||||
ModuleExtend.fromJson(Map<String, dynamic> json) {
|
|
||||||
if (json['items'] != null) {
|
|
||||||
items = <ModuleExtendItem>[];
|
|
||||||
json['items'].forEach((v) {
|
|
||||||
items!.add(ModuleExtendItem.fromJson(v));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleExtendItem {
|
|
||||||
ModuleExtendItem({
|
|
||||||
this.bizId,
|
|
||||||
this.bizType,
|
|
||||||
this.icon,
|
|
||||||
this.jumpUrl,
|
|
||||||
this.text,
|
|
||||||
});
|
|
||||||
|
|
||||||
dynamic bizId;
|
|
||||||
int? bizType;
|
|
||||||
dynamic icon;
|
|
||||||
String? jumpUrl;
|
|
||||||
String? text;
|
|
||||||
|
|
||||||
ModuleExtendItem.fromJson(Map<String, dynamic> json) {
|
|
||||||
bizId = json['biz_id'];
|
|
||||||
bizType = json['biz_type'];
|
|
||||||
icon = json['icon'];
|
|
||||||
jumpUrl = json['jump_url'];
|
|
||||||
text = json['text'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleBottom {
|
|
||||||
ModuleBottom({
|
|
||||||
this.shareInfo,
|
|
||||||
});
|
|
||||||
|
|
||||||
ShareInfo? shareInfo;
|
|
||||||
|
|
||||||
ModuleBottom.fromJson(Map<String, dynamic> json) {
|
|
||||||
shareInfo = json['share_info'] != null
|
|
||||||
? ShareInfo.fromJson(json['share_info'])
|
|
||||||
: null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ShareInfo {
|
|
||||||
ShareInfo({
|
|
||||||
this.pic,
|
|
||||||
this.summary,
|
|
||||||
this.title,
|
|
||||||
});
|
|
||||||
|
|
||||||
String? pic;
|
|
||||||
String? summary;
|
|
||||||
String? title;
|
|
||||||
|
|
||||||
ShareInfo.fromJson(Map<String, dynamic> json) {
|
|
||||||
pic = json['pic'];
|
|
||||||
summary = json['summary'];
|
|
||||||
title = json['title'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ModuleStat {
|
|
||||||
ModuleStat({
|
|
||||||
this.coin,
|
|
||||||
this.comment,
|
|
||||||
this.favorite,
|
|
||||||
this.forward,
|
|
||||||
this.like,
|
|
||||||
});
|
|
||||||
|
|
||||||
StatItem? coin;
|
|
||||||
StatItem? comment;
|
|
||||||
StatItem? favorite;
|
|
||||||
StatItem? forward;
|
|
||||||
StatItem? like;
|
|
||||||
|
|
||||||
ModuleStat.fromJson(Map<String, dynamic> json) {
|
|
||||||
coin = json['coin'] != null ? StatItem.fromJson(json['coin']) : null;
|
|
||||||
comment =
|
|
||||||
json['comment'] != null ? StatItem.fromJson(json['comment']) : null;
|
|
||||||
favorite =
|
|
||||||
json['favorite'] != null ? StatItem.fromJson(json['favorite']) : null;
|
|
||||||
forward =
|
|
||||||
json['forward'] != null ? StatItem.fromJson(json['forward']) : null;
|
|
||||||
like = json['like'] != null ? StatItem.fromJson(json['like']) : null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class StatItem {
|
|
||||||
StatItem({
|
|
||||||
this.count,
|
|
||||||
this.forbidden,
|
|
||||||
this.status,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? count;
|
|
||||||
bool? forbidden;
|
|
||||||
bool? status;
|
|
||||||
|
|
||||||
StatItem.fromJson(Map<String, dynamic> json) {
|
|
||||||
count = json['count'];
|
|
||||||
forbidden = json['forbidden'];
|
|
||||||
status = json['status'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
double customDivision(int a, int b) {
|
|
||||||
double result = a / b;
|
|
||||||
if (result < 1) {
|
|
||||||
return result;
|
|
||||||
} else {
|
|
||||||
return 1.0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,286 +0,0 @@
|
|||||||
import 'package:pilipala/models/member/info.dart';
|
|
||||||
|
|
||||||
import 'opus.dart';
|
|
||||||
|
|
||||||
class ReadDataModel {
|
|
||||||
ReadDataModel({
|
|
||||||
this.cvid,
|
|
||||||
this.readInfo,
|
|
||||||
this.readViewInfo,
|
|
||||||
this.upInfo,
|
|
||||||
this.catalogList,
|
|
||||||
this.recommendInfoList,
|
|
||||||
this.hiddenInteraction,
|
|
||||||
this.isModern,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? cvid;
|
|
||||||
ReadInfo? readInfo;
|
|
||||||
Map? readViewInfo;
|
|
||||||
Map? upInfo;
|
|
||||||
List<dynamic>? catalogList;
|
|
||||||
List<dynamic>? recommendInfoList;
|
|
||||||
bool? hiddenInteraction;
|
|
||||||
bool? isModern;
|
|
||||||
|
|
||||||
ReadDataModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
cvid = json['cvid'];
|
|
||||||
readInfo =
|
|
||||||
json['readInfo'] != null ? ReadInfo.fromJson(json['readInfo']) : null;
|
|
||||||
readViewInfo = json['readViewInfo'];
|
|
||||||
upInfo = json['upInfo'];
|
|
||||||
if (json['catalogList'] != null) {
|
|
||||||
catalogList = <dynamic>[];
|
|
||||||
json['catalogList'].forEach((v) {
|
|
||||||
catalogList!.add(v);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (json['recommendInfoList'] != null) {
|
|
||||||
recommendInfoList = <dynamic>[];
|
|
||||||
json['recommendInfoList'].forEach((v) {
|
|
||||||
recommendInfoList!.add(v);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
hiddenInteraction = json['hiddenInteraction'];
|
|
||||||
isModern = json['isModern'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ReadInfo {
|
|
||||||
ReadInfo({
|
|
||||||
this.id,
|
|
||||||
this.category,
|
|
||||||
this.title,
|
|
||||||
this.summary,
|
|
||||||
this.bannerUrl,
|
|
||||||
this.author,
|
|
||||||
this.publishTime,
|
|
||||||
this.ctime,
|
|
||||||
this.mtime,
|
|
||||||
this.stats,
|
|
||||||
this.attributes,
|
|
||||||
this.words,
|
|
||||||
this.originImageUrls,
|
|
||||||
this.content,
|
|
||||||
this.opus,
|
|
||||||
this.dynIdStr,
|
|
||||||
this.totalArtNum,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? id;
|
|
||||||
Map? category;
|
|
||||||
String? title;
|
|
||||||
String? summary;
|
|
||||||
String? bannerUrl;
|
|
||||||
Author? author;
|
|
||||||
int? publishTime;
|
|
||||||
int? ctime;
|
|
||||||
int? mtime;
|
|
||||||
Map? stats;
|
|
||||||
int? attributes;
|
|
||||||
int? words;
|
|
||||||
List<String>? originImageUrls;
|
|
||||||
String? content;
|
|
||||||
Opus? opus;
|
|
||||||
String? dynIdStr;
|
|
||||||
int? totalArtNum;
|
|
||||||
|
|
||||||
ReadInfo.fromJson(Map<String, dynamic> json) {
|
|
||||||
id = json['id'];
|
|
||||||
category = json['category'];
|
|
||||||
title = json['title'];
|
|
||||||
summary = json['summary'];
|
|
||||||
bannerUrl = json['banner_url'];
|
|
||||||
author = Author.fromJson(json['author']);
|
|
||||||
publishTime = json['publish_time'];
|
|
||||||
ctime = json['ctime'];
|
|
||||||
mtime = json['mtime'];
|
|
||||||
stats = json['stats'];
|
|
||||||
attributes = json['attributes'];
|
|
||||||
words = json['words'];
|
|
||||||
if (json['origin_image_urls'] != null) {
|
|
||||||
originImageUrls = <String>[];
|
|
||||||
json['origin_image_urls'].forEach((v) {
|
|
||||||
originImageUrls!.add(v);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
content = json['content'];
|
|
||||||
opus = json['opus'] != null ? Opus.fromJson(json['opus']) : null;
|
|
||||||
dynIdStr = json['dyn_id_str'];
|
|
||||||
totalArtNum = json['total_art_num'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Author {
|
|
||||||
Author({
|
|
||||||
this.mid,
|
|
||||||
this.name,
|
|
||||||
this.face,
|
|
||||||
this.vip,
|
|
||||||
this.fans,
|
|
||||||
this.level,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? mid;
|
|
||||||
String? name;
|
|
||||||
String? face;
|
|
||||||
Vip? vip;
|
|
||||||
int? fans;
|
|
||||||
int? level;
|
|
||||||
|
|
||||||
Author.fromJson(Map<String, dynamic> json) {
|
|
||||||
mid = json['mid'];
|
|
||||||
name = json['name'];
|
|
||||||
face = json['face'];
|
|
||||||
vip = json['vip'] != null ? Vip.fromJson(json['vip']) : null;
|
|
||||||
fans = json['fans'];
|
|
||||||
level = json['level'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Opus {
|
|
||||||
// "opus_id": 976625853207150600,
|
|
||||||
// "opus_source": 2,
|
|
||||||
// "title": "真的很想骂人 但又没什么好骂的",
|
|
||||||
// "content": {
|
|
||||||
// "paragraphs": [{
|
|
||||||
// "para_type": 1,
|
|
||||||
// "text": {
|
|
||||||
// "nodes": [{
|
|
||||||
// "node_type": 1,
|
|
||||||
// "word": {
|
|
||||||
// "words": "21年玩到今年4月的号没了 ow1的时候45的号 玩了三年 后面第9赛季一个英杰5的号(虽然是偷的 但我任何违规行为都没有还是给我封了) 最近玩的号叫velleity 只和队友打天梯以及训练赛 又没了 连带着我一个一把没玩过只玩过一场训练赛的小号也没了 实在是无话可说了...",
|
|
||||||
// "font_size": 17,
|
|
||||||
// "style": {},
|
|
||||||
// "font_level": "regular"
|
|
||||||
// }
|
|
||||||
// }]
|
|
||||||
// }
|
|
||||||
// }, {
|
|
||||||
// "para_type": 2,
|
|
||||||
// "pic": {
|
|
||||||
// "pics": [{
|
|
||||||
// "url": "https:\u002F\u002Fi0.hdslb.com\u002Fbfs\u002Fnew_dyn\u002Fba4e57459451fe74dcb70fd20bde9823316082117.jpg",
|
|
||||||
// "width": 1600,
|
|
||||||
// "height": 1000,
|
|
||||||
// "size": 588.482421875
|
|
||||||
// }],
|
|
||||||
// "style": 1
|
|
||||||
// }
|
|
||||||
// }, {
|
|
||||||
// "para_type": 1,
|
|
||||||
// "text": {
|
|
||||||
// "nodes": [{
|
|
||||||
// "node_type": 1,
|
|
||||||
// "word": {
|
|
||||||
// "words": "\n",
|
|
||||||
// "font_size": 17,
|
|
||||||
// "style": {},
|
|
||||||
// "font_level": "regular"
|
|
||||||
// }
|
|
||||||
// }]
|
|
||||||
// }
|
|
||||||
// }, {
|
|
||||||
// "para_type": 2,
|
|
||||||
// "pic": {
|
|
||||||
// "pics": [{
|
|
||||||
// "url": "https:\u002F\u002Fi0.hdslb.com\u002Fbfs\u002Fnew_dyn\u002F0945be6b621091ddb8189482a87a36fb316082117.jpg",
|
|
||||||
// "width": 1600,
|
|
||||||
// "height": 1002,
|
|
||||||
// "size": 665.7861328125
|
|
||||||
// }],
|
|
||||||
// "style": 1
|
|
||||||
// }
|
|
||||||
// }, {
|
|
||||||
// "para_type": 1,
|
|
||||||
// "text": {
|
|
||||||
// "nodes": [{
|
|
||||||
// "node_type": 1,
|
|
||||||
// "word": {
|
|
||||||
// "words": "\n",
|
|
||||||
// "font_size": 17,
|
|
||||||
// "style": {},
|
|
||||||
// "font_level": "regular"
|
|
||||||
// }
|
|
||||||
// }]
|
|
||||||
// }
|
|
||||||
// }, {
|
|
||||||
// "para_type": 2,
|
|
||||||
// "pic": {
|
|
||||||
// "pics": [{
|
|
||||||
// "url": "https:\u002F\u002Fi0.hdslb.com\u002Fbfs\u002Fnew_dyn\u002Ffa60649f8786578a764a1e68a2c5d23f316082117.jpg",
|
|
||||||
// "width": 1600,
|
|
||||||
// "height": 999,
|
|
||||||
// "size": 332.970703125
|
|
||||||
// }],
|
|
||||||
// "style": 1
|
|
||||||
// }
|
|
||||||
// }, {
|
|
||||||
// "para_type": 1,
|
|
||||||
// "text": {
|
|
||||||
// "nodes": [{
|
|
||||||
// "node_type": 1,
|
|
||||||
// "word": {
|
|
||||||
// "words": "\n",
|
|
||||||
// "font_size": 17,
|
|
||||||
// "style": {},
|
|
||||||
// "font_level": "regular"
|
|
||||||
// }
|
|
||||||
// }]
|
|
||||||
// }
|
|
||||||
// }]
|
|
||||||
// },
|
|
||||||
// "pub_info": {
|
|
||||||
// "uid": 316082117,
|
|
||||||
// "pub_time": 1726226826
|
|
||||||
// },
|
|
||||||
// "article": {
|
|
||||||
// "category_id": 15,
|
|
||||||
// "cover": [{
|
|
||||||
// "url": "https:\u002F\u002Fi0.hdslb.com\u002Fbfs\u002Fnew_dyn\u002Fbanner\u002Feb10074186a62f98c18e1b5b9deb38be316082117.png",
|
|
||||||
// "width": 1071,
|
|
||||||
// "height": 315,
|
|
||||||
// "size": 225.625
|
|
||||||
// }]
|
|
||||||
// },
|
|
||||||
// "version": {
|
|
||||||
// "cvid": 38660379,
|
|
||||||
// "version_id": 101683514411343360
|
|
||||||
// }
|
|
||||||
Opus({
|
|
||||||
this.opusId,
|
|
||||||
this.opusSource,
|
|
||||||
this.title,
|
|
||||||
this.content,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? opusId;
|
|
||||||
int? opusSource;
|
|
||||||
String? title;
|
|
||||||
Content? content;
|
|
||||||
|
|
||||||
Opus.fromJson(Map<String, dynamic> json) {
|
|
||||||
opusId = json['opus_id'];
|
|
||||||
opusSource = json['opus_source'];
|
|
||||||
title = json['title'];
|
|
||||||
content =
|
|
||||||
json['content'] != null ? Content.fromJson(json['content']) : null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Content {
|
|
||||||
Content({
|
|
||||||
this.paragraphs,
|
|
||||||
});
|
|
||||||
|
|
||||||
List<ModuleParagraph>? paragraphs;
|
|
||||||
|
|
||||||
Content.fromJson(Map<String, dynamic> json) {
|
|
||||||
if (json['paragraphs'] != null) {
|
|
||||||
paragraphs = <ModuleParagraph>[];
|
|
||||||
json['paragraphs'].forEach((v) {
|
|
||||||
paragraphs!.add(ModuleParagraph.fromJson(v));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
class SearchAllModel {
|
|
||||||
SearchAllModel({this.topTList});
|
|
||||||
|
|
||||||
Map? topTList;
|
|
||||||
|
|
||||||
SearchAllModel.fromJson(Map<String, dynamic> json) {
|
|
||||||
topTList = json['top_tlist'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -25,11 +25,14 @@ class HotSearchItem {
|
|||||||
// 4/5热 11话题 8普通 7直播
|
// 4/5热 11话题 8普通 7直播
|
||||||
int? wordType;
|
int? wordType;
|
||||||
String? icon;
|
String? icon;
|
||||||
|
List? liveId;
|
||||||
|
|
||||||
HotSearchItem.fromJson(Map<String, dynamic> json) {
|
HotSearchItem.fromJson(Map<String, dynamic> json) {
|
||||||
keyword = json['keyword'];
|
keyword = json['keyword'];
|
||||||
showName = json['show_name'];
|
showName = json['show_name'];
|
||||||
wordType = json['word_type'];
|
wordType = json['word_type'];
|
||||||
icon = json['icon'];
|
icon = json['icon'];
|
||||||
|
liveId = json['live_id'];
|
||||||
|
liveId = json['live_id'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,9 +5,7 @@ class SearchVideoModel {
|
|||||||
SearchVideoModel({this.list});
|
SearchVideoModel({this.list});
|
||||||
List<SearchVideoItemModel>? list;
|
List<SearchVideoItemModel>? list;
|
||||||
SearchVideoModel.fromJson(Map<String, dynamic> json) {
|
SearchVideoModel.fromJson(Map<String, dynamic> json) {
|
||||||
list = json['result'] == null
|
list = json['result']
|
||||||
? []
|
|
||||||
: json['result']
|
|
||||||
.where((e) => e['available'] == true)
|
.where((e) => e['available'] == true)
|
||||||
.map<SearchVideoItemModel>((e) => SearchVideoItemModel.fromJson(e))
|
.map<SearchVideoItemModel>((e) => SearchVideoItemModel.fromJson(e))
|
||||||
.toList();
|
.toList();
|
||||||
@ -27,7 +25,6 @@ class SearchVideoItemModel {
|
|||||||
this.aid,
|
this.aid,
|
||||||
this.bvid,
|
this.bvid,
|
||||||
this.title,
|
this.title,
|
||||||
this.titleList,
|
|
||||||
this.description,
|
this.description,
|
||||||
this.pic,
|
this.pic,
|
||||||
// this.play,
|
// this.play,
|
||||||
@ -57,8 +54,8 @@ class SearchVideoItemModel {
|
|||||||
String? arcurl;
|
String? arcurl;
|
||||||
int? aid;
|
int? aid;
|
||||||
String? bvid;
|
String? bvid;
|
||||||
String? title;
|
List? title;
|
||||||
List? titleList;
|
// List? titleList;
|
||||||
String? description;
|
String? description;
|
||||||
String? pic;
|
String? pic;
|
||||||
// String? play;
|
// String? play;
|
||||||
@ -85,13 +82,10 @@ class SearchVideoItemModel {
|
|||||||
aid = json['aid'];
|
aid = json['aid'];
|
||||||
bvid = json['bvid'];
|
bvid = json['bvid'];
|
||||||
mid = json['mid'];
|
mid = json['mid'];
|
||||||
title = json['title'].replaceAll(RegExp(r'<.*?>'), '');
|
// title = json['title'].replaceAll(RegExp(r'<.*?>'), '');
|
||||||
// title = Em.regTitle(json['title']);
|
title = Em.regTitle(json['title']);
|
||||||
titleList = Em.regTitle(json['title']);
|
|
||||||
description = json['description'];
|
description = json['description'];
|
||||||
pic = json['pic'] != null && json['pic'].startsWith('//')
|
pic = 'https:${json['pic']}';
|
||||||
? 'https:${json['pic']}'
|
|
||||||
: json['pic'] ?? '';
|
|
||||||
videoReview = json['video_review'];
|
videoReview = json['video_review'];
|
||||||
pubdate = json['pubdate'];
|
pubdate = json['pubdate'];
|
||||||
senddate = json['senddate'];
|
senddate = json['senddate'];
|
||||||
@ -236,7 +230,6 @@ class SearchLiveItemModel {
|
|||||||
this.userCover,
|
this.userCover,
|
||||||
this.type,
|
this.type,
|
||||||
this.title,
|
this.title,
|
||||||
this.titleList,
|
|
||||||
this.cover,
|
this.cover,
|
||||||
this.pic,
|
this.pic,
|
||||||
this.online,
|
this.online,
|
||||||
@ -256,8 +249,7 @@ class SearchLiveItemModel {
|
|||||||
String? face;
|
String? face;
|
||||||
String? userCover;
|
String? userCover;
|
||||||
String? type;
|
String? type;
|
||||||
String? title;
|
List? title;
|
||||||
List? titleList;
|
|
||||||
String? cover;
|
String? cover;
|
||||||
String? pic;
|
String? pic;
|
||||||
int? online;
|
int? online;
|
||||||
@ -278,8 +270,7 @@ class SearchLiveItemModel {
|
|||||||
face = json['uface'];
|
face = json['uface'];
|
||||||
userCover = json['user_cover'];
|
userCover = json['user_cover'];
|
||||||
type = json['type'];
|
type = json['type'];
|
||||||
title = json['title'].replaceAll(RegExp(r'<.*?>'), '');
|
title = Em.regTitle(json['title']);
|
||||||
titleList = Em.regTitle(json['title']);
|
|
||||||
cover = json['cover'];
|
cover = json['cover'];
|
||||||
pic = json['cover'];
|
pic = json['cover'];
|
||||||
online = json['online'];
|
online = json['online'];
|
||||||
@ -309,7 +300,6 @@ class SearchMBangumiItemModel {
|
|||||||
this.type,
|
this.type,
|
||||||
this.mediaId,
|
this.mediaId,
|
||||||
this.title,
|
this.title,
|
||||||
this.titleList,
|
|
||||||
this.orgTitle,
|
this.orgTitle,
|
||||||
this.mediaType,
|
this.mediaType,
|
||||||
this.cv,
|
this.cv,
|
||||||
@ -336,8 +326,7 @@ class SearchMBangumiItemModel {
|
|||||||
|
|
||||||
String? type;
|
String? type;
|
||||||
int? mediaId;
|
int? mediaId;
|
||||||
String? title;
|
List? title;
|
||||||
List? titleList;
|
|
||||||
String? orgTitle;
|
String? orgTitle;
|
||||||
int? mediaType;
|
int? mediaType;
|
||||||
String? cv;
|
String? cv;
|
||||||
@ -364,8 +353,7 @@ class SearchMBangumiItemModel {
|
|||||||
SearchMBangumiItemModel.fromJson(Map<String, dynamic> json) {
|
SearchMBangumiItemModel.fromJson(Map<String, dynamic> json) {
|
||||||
type = json['type'];
|
type = json['type'];
|
||||||
mediaId = json['media_id'];
|
mediaId = json['media_id'];
|
||||||
title = json['title'].replaceAll(RegExp(r'<.*?>'), '');
|
title = Em.regTitle(json['title']);
|
||||||
titleList = Em.regTitle(json['title']);
|
|
||||||
orgTitle = json['org_title'];
|
orgTitle = json['org_title'];
|
||||||
mediaType = json['media_type'];
|
mediaType = json['media_type'];
|
||||||
cv = json['cv'];
|
cv = json['cv'];
|
||||||
@ -447,8 +435,7 @@ class SearchArticleItemModel {
|
|||||||
pubTime = json['pub_time'];
|
pubTime = json['pub_time'];
|
||||||
like = json['like'];
|
like = json['like'];
|
||||||
title = Em.regTitle(json['title']);
|
title = Em.regTitle(json['title']);
|
||||||
subTitle =
|
subTitle = json['title'].replaceAll(RegExp(r'<[^>]*>'), '');
|
||||||
Em.decodeHtmlEntities(json['title'].replaceAll(RegExp(r'<[^>]*>'), ''));
|
|
||||||
rankOffset = json['rank_offset'];
|
rankOffset = json['rank_offset'];
|
||||||
mid = json['mid'];
|
mid = json['mid'];
|
||||||
imageUrls = json['image_urls'];
|
imageUrls = json['image_urls'];
|
||||||
|
|||||||
@ -15,7 +15,7 @@ class FavFolderData {
|
|||||||
? json['list']
|
? json['list']
|
||||||
.map<FavFolderItemData>((e) => FavFolderItemData.fromJson(e))
|
.map<FavFolderItemData>((e) => FavFolderItemData.fromJson(e))
|
||||||
.toList()
|
.toList()
|
||||||
: <FavFolderItemData>[];
|
: [FavFolderItemData()];
|
||||||
hasMore = json['has_more'];
|
hasMore = json['has_more'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
|
import 'package:hive/hive.dart';
|
||||||
|
|
||||||
|
part 'stat.g.dart';
|
||||||
|
|
||||||
|
@HiveType(typeId: 1)
|
||||||
class UserStat {
|
class UserStat {
|
||||||
UserStat({
|
UserStat({
|
||||||
this.following,
|
this.following,
|
||||||
@ -5,8 +10,11 @@ class UserStat {
|
|||||||
this.dynamicCount,
|
this.dynamicCount,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@HiveField(0)
|
||||||
int? following;
|
int? following;
|
||||||
|
@HiveField(1)
|
||||||
int? follower;
|
int? follower;
|
||||||
|
@HiveField(2)
|
||||||
int? dynamicCount;
|
int? dynamicCount;
|
||||||
|
|
||||||
UserStat.fromJson(Map<String, dynamic> json) {
|
UserStat.fromJson(Map<String, dynamic> json) {
|
||||||
|
|||||||
47
lib/models/user/stat.g.dart
Normal file
47
lib/models/user/stat.g.dart
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||||
|
|
||||||
|
part of 'stat.dart';
|
||||||
|
|
||||||
|
// **************************************************************************
|
||||||
|
// TypeAdapterGenerator
|
||||||
|
// **************************************************************************
|
||||||
|
|
||||||
|
class UserStatAdapter extends TypeAdapter<UserStat> {
|
||||||
|
@override
|
||||||
|
final int typeId = 1;
|
||||||
|
|
||||||
|
@override
|
||||||
|
UserStat read(BinaryReader reader) {
|
||||||
|
final numOfFields = reader.readByte();
|
||||||
|
final fields = <int, dynamic>{
|
||||||
|
for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
|
||||||
|
};
|
||||||
|
return UserStat(
|
||||||
|
following: fields[0] as int?,
|
||||||
|
follower: fields[1] as int?,
|
||||||
|
dynamicCount: fields[2] as int?,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void write(BinaryWriter writer, UserStat obj) {
|
||||||
|
writer
|
||||||
|
..writeByte(3)
|
||||||
|
..writeByte(0)
|
||||||
|
..write(obj.following)
|
||||||
|
..writeByte(1)
|
||||||
|
..write(obj.follower)
|
||||||
|
..writeByte(2)
|
||||||
|
..write(obj.dynamicCount);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
int get hashCode => typeId.hashCode;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool operator ==(Object other) =>
|
||||||
|
identical(this, other) ||
|
||||||
|
other is UserStatAdapter &&
|
||||||
|
runtimeType == other.runtimeType &&
|
||||||
|
typeId == other.typeId;
|
||||||
|
}
|
||||||
@ -1,123 +0,0 @@
|
|||||||
class SubDetailModelData {
|
|
||||||
DetailInfo? info;
|
|
||||||
List<SubDetailMediaItem>? medias;
|
|
||||||
|
|
||||||
SubDetailModelData({this.info, this.medias});
|
|
||||||
|
|
||||||
SubDetailModelData.fromJson(Map<String, dynamic> json) {
|
|
||||||
info = DetailInfo.fromJson(json['info']);
|
|
||||||
if (json['medias'] != null) {
|
|
||||||
medias = <SubDetailMediaItem>[];
|
|
||||||
json['medias'].forEach((v) {
|
|
||||||
medias!.add(SubDetailMediaItem.fromJson(v));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class SubDetailMediaItem {
|
|
||||||
int? id;
|
|
||||||
String? title;
|
|
||||||
String? cover;
|
|
||||||
String? pic;
|
|
||||||
int? duration;
|
|
||||||
int? pubtime;
|
|
||||||
String? bvid;
|
|
||||||
Map? upper;
|
|
||||||
Map? cntInfo;
|
|
||||||
int? enableVt;
|
|
||||||
String? vtDisplay;
|
|
||||||
|
|
||||||
SubDetailMediaItem({
|
|
||||||
this.id,
|
|
||||||
this.title,
|
|
||||||
this.cover,
|
|
||||||
this.pic,
|
|
||||||
this.duration,
|
|
||||||
this.pubtime,
|
|
||||||
this.bvid,
|
|
||||||
this.upper,
|
|
||||||
this.cntInfo,
|
|
||||||
this.enableVt,
|
|
||||||
this.vtDisplay,
|
|
||||||
});
|
|
||||||
|
|
||||||
SubDetailMediaItem.fromJson(Map<String, dynamic> json) {
|
|
||||||
id = json['id'];
|
|
||||||
title = json['title'];
|
|
||||||
cover = json['cover'];
|
|
||||||
pic = json['cover'];
|
|
||||||
duration = json['duration'];
|
|
||||||
pubtime = json['pubtime'];
|
|
||||||
bvid = json['bvid'];
|
|
||||||
upper = json['upper'];
|
|
||||||
cntInfo = json['cnt_info'];
|
|
||||||
enableVt = json['enable_vt'];
|
|
||||||
vtDisplay = json['vt_display'];
|
|
||||||
}
|
|
||||||
|
|
||||||
Map<String, dynamic> toJson() {
|
|
||||||
final data = <String, dynamic>{};
|
|
||||||
data['id'] = id;
|
|
||||||
data['title'] = title;
|
|
||||||
data['cover'] = cover;
|
|
||||||
data['duration'] = duration;
|
|
||||||
data['pubtime'] = pubtime;
|
|
||||||
data['bvid'] = bvid;
|
|
||||||
data['upper'] = upper;
|
|
||||||
data['cnt_info'] = cntInfo;
|
|
||||||
data['enable_vt'] = enableVt;
|
|
||||||
data['vt_display'] = vtDisplay;
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class DetailInfo {
|
|
||||||
int? id;
|
|
||||||
int? seasonType;
|
|
||||||
String? title;
|
|
||||||
String? cover;
|
|
||||||
Map? upper;
|
|
||||||
Map? cntInfo;
|
|
||||||
int? mediaCount;
|
|
||||||
String? intro;
|
|
||||||
int? enableVt;
|
|
||||||
|
|
||||||
DetailInfo({
|
|
||||||
this.id,
|
|
||||||
this.seasonType,
|
|
||||||
this.title,
|
|
||||||
this.cover,
|
|
||||||
this.upper,
|
|
||||||
this.cntInfo,
|
|
||||||
this.mediaCount,
|
|
||||||
this.intro,
|
|
||||||
this.enableVt,
|
|
||||||
});
|
|
||||||
|
|
||||||
DetailInfo.fromJson(Map<String, dynamic> json) {
|
|
||||||
id = json['id'];
|
|
||||||
seasonType = json['season_type'];
|
|
||||||
title = json['title'];
|
|
||||||
cover = json['cover'];
|
|
||||||
upper = json['upper'];
|
|
||||||
cntInfo = json['cnt_info'];
|
|
||||||
mediaCount = json['media_count'];
|
|
||||||
intro = json['intro'];
|
|
||||||
enableVt = json['enable_vt'];
|
|
||||||
}
|
|
||||||
|
|
||||||
Map<String, dynamic> toJson() {
|
|
||||||
final data = <String, dynamic>{};
|
|
||||||
data['id'] = id;
|
|
||||||
data['season_type'] = seasonType;
|
|
||||||
data['title'] = title;
|
|
||||||
data['cover'] = cover;
|
|
||||||
data['upper'] = upper;
|
|
||||||
data['cnt_info'] = cntInfo;
|
|
||||||
data['media_count'] = mediaCount;
|
|
||||||
data['intro'] = intro;
|
|
||||||
data['enable_vt'] = enableVt;
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,111 +0,0 @@
|
|||||||
class SubFolderModelData {
|
|
||||||
final int? count;
|
|
||||||
final List<SubFolderItemData>? list;
|
|
||||||
|
|
||||||
SubFolderModelData({
|
|
||||||
this.count,
|
|
||||||
this.list,
|
|
||||||
});
|
|
||||||
|
|
||||||
factory SubFolderModelData.fromJson(Map<String, dynamic> json) {
|
|
||||||
return SubFolderModelData(
|
|
||||||
count: json['count'],
|
|
||||||
list: json['list'] != null
|
|
||||||
? (json['list'] as List)
|
|
||||||
.map<SubFolderItemData>((i) => SubFolderItemData.fromJson(i))
|
|
||||||
.toList()
|
|
||||||
: null,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class SubFolderItemData {
|
|
||||||
final int? id;
|
|
||||||
final int? fid;
|
|
||||||
final int? mid;
|
|
||||||
final int? attr;
|
|
||||||
final String? title;
|
|
||||||
final String? cover;
|
|
||||||
final Upper? upper;
|
|
||||||
final int? coverType;
|
|
||||||
final String? intro;
|
|
||||||
final int? ctime;
|
|
||||||
final int? mtime;
|
|
||||||
final int? state;
|
|
||||||
final int? favState;
|
|
||||||
final int? mediaCount;
|
|
||||||
final int? viewCount;
|
|
||||||
final int? vt;
|
|
||||||
final int? playSwitch;
|
|
||||||
final int? type;
|
|
||||||
final String? link;
|
|
||||||
final String? bvid;
|
|
||||||
|
|
||||||
SubFolderItemData({
|
|
||||||
this.id,
|
|
||||||
this.fid,
|
|
||||||
this.mid,
|
|
||||||
this.attr,
|
|
||||||
this.title,
|
|
||||||
this.cover,
|
|
||||||
this.upper,
|
|
||||||
this.coverType,
|
|
||||||
this.intro,
|
|
||||||
this.ctime,
|
|
||||||
this.mtime,
|
|
||||||
this.state,
|
|
||||||
this.favState,
|
|
||||||
this.mediaCount,
|
|
||||||
this.viewCount,
|
|
||||||
this.vt,
|
|
||||||
this.playSwitch,
|
|
||||||
this.type,
|
|
||||||
this.link,
|
|
||||||
this.bvid,
|
|
||||||
});
|
|
||||||
|
|
||||||
factory SubFolderItemData.fromJson(Map<String, dynamic> json) {
|
|
||||||
return SubFolderItemData(
|
|
||||||
id: json['id'],
|
|
||||||
fid: json['fid'],
|
|
||||||
mid: json['mid'],
|
|
||||||
attr: json['attr'],
|
|
||||||
title: json['title'],
|
|
||||||
cover: json['cover'],
|
|
||||||
upper: json['upper'] != null ? Upper.fromJson(json['upper']) : null,
|
|
||||||
coverType: json['cover_type'],
|
|
||||||
intro: json['intro'],
|
|
||||||
ctime: json['ctime'],
|
|
||||||
mtime: json['mtime'],
|
|
||||||
state: json['state'],
|
|
||||||
favState: json['fav_state'],
|
|
||||||
mediaCount: json['media_count'],
|
|
||||||
viewCount: json['view_count'],
|
|
||||||
vt: json['vt'],
|
|
||||||
playSwitch: json['play_switch'],
|
|
||||||
type: json['type'],
|
|
||||||
link: json['link'],
|
|
||||||
bvid: json['bvid'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Upper {
|
|
||||||
final int? mid;
|
|
||||||
final String? name;
|
|
||||||
final String? face;
|
|
||||||
|
|
||||||
Upper({
|
|
||||||
this.mid,
|
|
||||||
this.name,
|
|
||||||
this.face,
|
|
||||||
});
|
|
||||||
|
|
||||||
factory Upper.fromJson(Map<String, dynamic> json) {
|
|
||||||
return Upper(
|
|
||||||
mid: json['mid'],
|
|
||||||
name: json['name'],
|
|
||||||
face: json['face'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -39,11 +39,11 @@ class ModelResult {
|
|||||||
ModelResult.fromJson(Map<String, dynamic> json) {
|
ModelResult.fromJson(Map<String, dynamic> json) {
|
||||||
resultType = json['result_type'];
|
resultType = json['result_type'];
|
||||||
summary = json['summary'];
|
summary = json['summary'];
|
||||||
outline = json['result_type'] == 0
|
outline = json['result_type'] == 2
|
||||||
? <OutlineItem>[]
|
? json['outline']
|
||||||
: json['outline']
|
|
||||||
.map<OutlineItem>((e) => OutlineItem.fromJson(e))
|
.map<OutlineItem>((e) => OutlineItem.fromJson(e))
|
||||||
.toList();
|
.toList()
|
||||||
|
: <OutlineItem>[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,276 +0,0 @@
|
|||||||
class MediaVideoItemModel {
|
|
||||||
MediaVideoItemModel({
|
|
||||||
this.id,
|
|
||||||
this.aid,
|
|
||||||
this.offset,
|
|
||||||
this.index,
|
|
||||||
this.intro,
|
|
||||||
this.attr,
|
|
||||||
this.tid,
|
|
||||||
this.copyRight,
|
|
||||||
this.cntInfo,
|
|
||||||
this.cover,
|
|
||||||
this.duration,
|
|
||||||
this.pubtime,
|
|
||||||
this.likeState,
|
|
||||||
this.favState,
|
|
||||||
this.page,
|
|
||||||
this.cid,
|
|
||||||
this.pages,
|
|
||||||
this.title,
|
|
||||||
this.type,
|
|
||||||
this.upper,
|
|
||||||
this.link,
|
|
||||||
this.bvid,
|
|
||||||
this.shortLink,
|
|
||||||
this.rights,
|
|
||||||
this.elecInfo,
|
|
||||||
this.coin,
|
|
||||||
this.progressPercent,
|
|
||||||
this.badge,
|
|
||||||
this.forbidFav,
|
|
||||||
this.moreType,
|
|
||||||
this.businessOid,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? id;
|
|
||||||
int? aid;
|
|
||||||
int? offset;
|
|
||||||
int? index;
|
|
||||||
String? intro;
|
|
||||||
int? attr;
|
|
||||||
int? tid;
|
|
||||||
int? copyRight;
|
|
||||||
Map? cntInfo;
|
|
||||||
String? cover;
|
|
||||||
int? duration;
|
|
||||||
int? pubtime;
|
|
||||||
int? likeState;
|
|
||||||
int? favState;
|
|
||||||
int? page;
|
|
||||||
int? cid;
|
|
||||||
List<Page>? pages;
|
|
||||||
String? title;
|
|
||||||
int? type;
|
|
||||||
Upper? upper;
|
|
||||||
String? link;
|
|
||||||
String? bvid;
|
|
||||||
String? shortLink;
|
|
||||||
Rights? rights;
|
|
||||||
dynamic elecInfo;
|
|
||||||
Coin? coin;
|
|
||||||
double? progressPercent;
|
|
||||||
dynamic badge;
|
|
||||||
bool? forbidFav;
|
|
||||||
int? moreType;
|
|
||||||
int? businessOid;
|
|
||||||
|
|
||||||
factory MediaVideoItemModel.fromJson(Map<String, dynamic> json) =>
|
|
||||||
MediaVideoItemModel(
|
|
||||||
id: json["id"],
|
|
||||||
aid: json["id"],
|
|
||||||
offset: json["offset"],
|
|
||||||
index: json["index"],
|
|
||||||
intro: json["intro"],
|
|
||||||
attr: json["attr"],
|
|
||||||
tid: json["tid"],
|
|
||||||
copyRight: json["copy_right"],
|
|
||||||
cntInfo: json["cnt_info"],
|
|
||||||
cover: json["cover"],
|
|
||||||
duration: json["duration"],
|
|
||||||
pubtime: json["pubtime"],
|
|
||||||
likeState: json["like_state"],
|
|
||||||
favState: json["fav_state"],
|
|
||||||
page: json["page"],
|
|
||||||
cid: json["pages"] == null ? -1 : json["pages"].first['id'],
|
|
||||||
// json["pages"] 可能为null
|
|
||||||
pages: json["pages"] == null
|
|
||||||
? []
|
|
||||||
: List<Page>.from(json["pages"].map((x) => Page.fromJson(x))),
|
|
||||||
title: json["title"],
|
|
||||||
type: json["type"],
|
|
||||||
upper: Upper.fromJson(json["upper"]),
|
|
||||||
link: json["link"],
|
|
||||||
bvid: json["bv_id"],
|
|
||||||
shortLink: json["short_link"],
|
|
||||||
rights: Rights.fromJson(json["rights"]),
|
|
||||||
elecInfo: json["elec_info"],
|
|
||||||
coin: Coin.fromJson(json["coin"]),
|
|
||||||
progressPercent: json["progress_percent"].toDouble(),
|
|
||||||
badge: json["badge"],
|
|
||||||
forbidFav: json["forbid_fav"],
|
|
||||||
moreType: json["more_type"],
|
|
||||||
businessOid: json["business_oid"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Coin {
|
|
||||||
Coin({
|
|
||||||
this.maxNum,
|
|
||||||
this.coinNumber,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? maxNum;
|
|
||||||
int? coinNumber;
|
|
||||||
|
|
||||||
factory Coin.fromJson(Map<String, dynamic> json) => Coin(
|
|
||||||
maxNum: json["max_num"],
|
|
||||||
coinNumber: json["coin_number"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Page {
|
|
||||||
Page({
|
|
||||||
this.id,
|
|
||||||
this.title,
|
|
||||||
this.intro,
|
|
||||||
this.duration,
|
|
||||||
this.link,
|
|
||||||
this.page,
|
|
||||||
this.metas,
|
|
||||||
this.from,
|
|
||||||
this.dimension,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? id;
|
|
||||||
String? title;
|
|
||||||
String? intro;
|
|
||||||
int? duration;
|
|
||||||
String? link;
|
|
||||||
int? page;
|
|
||||||
List<Meta>? metas;
|
|
||||||
String? from;
|
|
||||||
Dimension? dimension;
|
|
||||||
|
|
||||||
factory Page.fromJson(Map<String, dynamic> json) => Page(
|
|
||||||
id: json["id"],
|
|
||||||
title: json["title"],
|
|
||||||
intro: json["intro"],
|
|
||||||
duration: json["duration"],
|
|
||||||
link: json["link"],
|
|
||||||
page: json["page"],
|
|
||||||
metas: List<Meta>.from(json["metas"].map((x) => Meta.fromJson(x))),
|
|
||||||
from: json["from"],
|
|
||||||
dimension: Dimension.fromJson(json["dimension"]),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Dimension {
|
|
||||||
Dimension({
|
|
||||||
this.width,
|
|
||||||
this.height,
|
|
||||||
this.rotate,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? width;
|
|
||||||
int? height;
|
|
||||||
int? rotate;
|
|
||||||
|
|
||||||
factory Dimension.fromJson(Map<String, dynamic> json) => Dimension(
|
|
||||||
width: json["width"],
|
|
||||||
height: json["height"],
|
|
||||||
rotate: json["rotate"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Meta {
|
|
||||||
Meta({
|
|
||||||
this.quality,
|
|
||||||
this.size,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? quality;
|
|
||||||
int? size;
|
|
||||||
|
|
||||||
factory Meta.fromJson(Map<String, dynamic> json) => Meta(
|
|
||||||
quality: json["quality"],
|
|
||||||
size: json["size"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Rights {
|
|
||||||
Rights({
|
|
||||||
this.bp,
|
|
||||||
this.elec,
|
|
||||||
this.download,
|
|
||||||
this.movie,
|
|
||||||
this.pay,
|
|
||||||
this.ugcPay,
|
|
||||||
this.hd5,
|
|
||||||
this.noReprint,
|
|
||||||
this.autoplay,
|
|
||||||
this.noBackground,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? bp;
|
|
||||||
int? elec;
|
|
||||||
int? download;
|
|
||||||
int? movie;
|
|
||||||
int? pay;
|
|
||||||
int? ugcPay;
|
|
||||||
int? hd5;
|
|
||||||
int? noReprint;
|
|
||||||
int? autoplay;
|
|
||||||
int? noBackground;
|
|
||||||
|
|
||||||
factory Rights.fromJson(Map<String, dynamic> json) => Rights(
|
|
||||||
bp: json["bp"],
|
|
||||||
elec: json["elec"],
|
|
||||||
download: json["download"],
|
|
||||||
movie: json["movie"],
|
|
||||||
pay: json["pay"],
|
|
||||||
ugcPay: json["ugc_pay"],
|
|
||||||
hd5: json["hd5"],
|
|
||||||
noReprint: json["no_reprint"],
|
|
||||||
autoplay: json["autoplay"],
|
|
||||||
noBackground: json["no_background"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Upper {
|
|
||||||
Upper({
|
|
||||||
this.mid,
|
|
||||||
this.name,
|
|
||||||
this.face,
|
|
||||||
this.followed,
|
|
||||||
this.fans,
|
|
||||||
this.vipType,
|
|
||||||
this.vipStatue,
|
|
||||||
this.vipDueDate,
|
|
||||||
this.vipPayType,
|
|
||||||
this.officialRole,
|
|
||||||
this.officialTitle,
|
|
||||||
this.officialDesc,
|
|
||||||
this.displayName,
|
|
||||||
});
|
|
||||||
|
|
||||||
int? mid;
|
|
||||||
String? name;
|
|
||||||
String? face;
|
|
||||||
int? followed;
|
|
||||||
int? fans;
|
|
||||||
int? vipType;
|
|
||||||
int? vipStatue;
|
|
||||||
int? vipDueDate;
|
|
||||||
int? vipPayType;
|
|
||||||
int? officialRole;
|
|
||||||
String? officialTitle;
|
|
||||||
String? officialDesc;
|
|
||||||
String? displayName;
|
|
||||||
|
|
||||||
factory Upper.fromJson(Map<String, dynamic> json) => Upper(
|
|
||||||
mid: json["mid"],
|
|
||||||
name: json["name"],
|
|
||||||
face: json["face"],
|
|
||||||
followed: json["followed"],
|
|
||||||
fans: json["fans"],
|
|
||||||
vipType: json["vip_type"],
|
|
||||||
vipStatue: json["vip_statue"],
|
|
||||||
vipDueDate: json["vip_due_date"],
|
|
||||||
vipPayType: json["vip_pay_type"],
|
|
||||||
officialRole: json["official_role"],
|
|
||||||
officialTitle: json["official_title"],
|
|
||||||
officialDesc: json["official_desc"],
|
|
||||||
displayName: json["display_name"],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user