Home

Awesome

<div align="center"> <img src="http://imgx.horosama.com/admin_uploads/2022/10/2022_10_05_633d79e401694.png" alt=""> <h1>PicHoro</h1> <a href="https://github.com/Kuingsmile/PicHoro/releases/latest"> <img src="https://img.shields.io/github/release/Kuingsmile/PicHoro.svg?style=flat-square" alt=""> </a> </div>

  一款基于flutter的手机端云存储平台/图床管理和文件上传/下载工具,最新版本V2.4.0,与PicGo配置互通,可直接扫码导入,主要功能包括云存储/图床/云服务器平台,以及网盘管理(通过Alist),文件上传和下载管理,以及各种格式的链接分享。

  支持多种图片/PDF/文本文件/音视频的在线预览和播放,具体支持的格式请查看支持的格式列表

桌面端如果也希望进行图床管理,推荐使用我的另一个项目 PicListhttps://github.com/Kuingsmile/PicList

  项目介绍和配置手册网址:

  https://pichoro.horosama.com

  目前已支持如下图床:

特色功能

文件预览支持

平台图片PDF文本文件视频
Alist
阿里云
S3
腾讯云
又拍云
七牛云
WebDav
FTP
Github
Imgur
兰空
SM.MS

下载

安卓

Github下载地址 Github release

我的个人网站提供的最新版本下载地址 https://pichoro.msq.pub/PicHoro_V2.4.0.apk

IOS

由于个人没有Mac,无法提供IOS版本,如果有人愿意帮忙开发IOS版本,可以联系我,我会提供相关的技术支持。

应用截图

<div><video controls src="https://user-images.githubusercontent.com/96409857/205264099-a3a5d040-df75-4ae2-9773-f4d61fe3fb0a.mp4" muted="false"></video></div> <table rules="none"> <tr> <td><img src="https://user-images.githubusercontent.com/96409857/203718727-ceac86b4-8cb5-49c5-8ee3-bcfce51710cb.jpg" width="200" height="400" alt=""/></td> <td><img src="https://user-images.githubusercontent.com/96409857/203718378-fd4cf22f-b801-4356-9a8b-9d51a0db0e54.jpg" width="200" height="400" alt=""/></td> <td><img src="https://user-images.githubusercontent.com/96409857/211286619-63e406aa-0736-4581-bd9e-adde92209dba.png" width="200" height="400" alt=""/></td> </tr> <tr> <td><img src="https://user-images.githubusercontent.com/96409857/211286730-2e0c05b3-5093-4738-8378-7d2c273a694b.png" width="200" height="400" alt=""/></td> <td><img src="https://user-images.githubusercontent.com/96409857/203719066-b6e45be8-eb8f-49da-bea2-78f3d4379591.jpg" width="200" height="400" alt=""/></td> <td><img src="https://user-images.githubusercontent.com/96409857/203719617-b54a49bb-d9f9-4917-a68a-b4a46f951ee0.png" width="200" height="400" alt=""/></td> </tr> <tr> <td><img src="https://user-images.githubusercontent.com/96409857/203719608-34170e4c-2d6f-4e3a-990a-f61c610417e9.png" width="200" height="400" alt=""/></td> <td><img src="https://user-images.githubusercontent.com/96409857/203720199-38266fae-e0fa-4aad-8315-f272bc8b6add.jpg" width="200" height="400" alt=""/></td> <td><img src="https://user-images.githubusercontent.com/96409857/203720359-26717390-1789-4750-97dd-27836da322da.jpg" width="200" height="400" alt=""/></td> </tr> <tr> <td><img src="https://user-images.githubusercontent.com/96409857/203720473-577368a7-ed29-461b-b8f2-4077dd02ca84.jpg" width="200" height="400" alt=""/></td> <td><img src="https://user-images.githubusercontent.com/96409857/203720565-4d4008a5-198f-451d-b0cc-b1780291f2b7.png" width="200" height="400" alt=""/></td> <td><img src="https://user-images.githubusercontent.com/96409857/203720614-4bfd6e0c-ea16-4ed1-945d-c5c5524c89a6.png" width="200" height="400" alt=""/></td> </tr> </table>

最近更新

  详细更新日志请查看更新日志

2024-07-19 V2.4.0

2024-04-13 V2.3.0

开发交流

开发进度可以查看 Projects,会同步更新开发进度。

欢迎加入 Github讨论区 与我交流。

遇到Bug或有好的建议可以在 Github Issues 中提出。

Telegram交流群:

wechat

开发说明

依赖项目

请在clone本项目后,将以下项目clone到本地,放在同级目录下,否则无法正常运行。

https://github.com/Kuingsmile/flutterdep

软件修改

如果你想要修改或自行构建 PicHoro,可以依照下面的指示:

  1. 你需要有 Android Studio和 Android SDK 21+ 的环境,并安装了Flutter 3.13版本。flutter环境配置可以参考 Flutter 官方文档
  2. git clone https://github.com/Kuingsmile/PicHoro.git 并进入项目。
  3. Windows 推荐使用VScode编辑和调试代码。

图床修改

兰空图床的相册ID参数,限于以下两种情况下才会生效: 1. 基于付费企业版兰空图床搭建 2. 开源免费版需要自己或者联系管理员修改源代码文件,修改方式为打开 /app/Services/ImageService.php文件,修改第139行,原文件为

            if ($albumId = $user->configs->get(UserConfigKey::DefaultAlbum)) {
                if ($user->albums()->where('id', $albumId)->exists()) {
                    $image->album_id = $albumId;
                }
            }

修改为

           if ($request->has('album_id')) {
                $image->album_id = $request->input('album_id');
            } else {
            if ($albumId = $user->configs->get(UserConfigKey::DefaultAlbum)) {
                if ($user->albums()->where('id', $albumId)->exists()) {
                    $image->album_id = $albumId;
                }
            }
        }

依赖包修改

本APP使用的部分依赖包需要手动修改源代码才可使用,需要修改的依赖包如下:

minio_new

该依赖已经包含在了 https://github.com/Kuingsmile/flutterdep中,无需手动修改。

  1. queries['maxKeys']修改为 queries['max-keys']
  2. 添加导入 import 'package:xml2json/xml2json.dart';
  3. 如下修改 listBuckets函数
  Future<List<Bucket>> listBuckets() async {
    final resp = await _client.request(
      method: 'GET',
      region: region ?? 'us-east-1',
    );
    final myTransformer = Xml2Json();
    myTransformer.parse(resp.body);
    Map responseMap = json.decode(myTransformer.toParker());
    List<Bucket> buckets = [];
    if (responseMap['ListAllMyBucketsResult'] == null ||
        responseMap['ListAllMyBucketsResult']['Buckets'] == null ||
        responseMap['ListAllMyBucketsResult']['Buckets']['Bucket'] == null ||
        responseMap['ListAllMyBucketsResult']['Buckets']['Bucket'].length ==
            0) {
      return buckets;
    }
    if (responseMap['ListAllMyBucketsResult']['Buckets']['Bucket'] is! List) {
      buckets.add(Bucket(
          DateTime.parse(responseMap['ListAllMyBucketsResult']['Buckets']
              ['Bucket']['CreationDate']),
          responseMap['ListAllMyBucketsResult']['Buckets']['Bucket']['Name']));
      return buckets;
    }
    for (var bucket in responseMap['ListAllMyBucketsResult']['Buckets']
        ['Bucket']) {
      buckets
          .add(Bucket(DateTime.parse(bucket['CreationDate']), bucket['Name']));
    }
    return buckets;
  }

chewie

文件路径示例: "D:\flutter\.pub-cache\hosted\pub.flutter-io.cn\chewie-1.3.6\lib\src\player_with_controls.dart"

第86行开始修改为

  return Container(
      color:Colors.black,
      child:Center(
      child: SizedBox(
        height: MediaQuery.of(context).size.height,
        width: MediaQuery.of(context).size.width,
        child: AspectRatio(
          aspectRatio: calculateAspectRatio(context),
          child: buildPlayerWithControls(chewieController, context),
        ),
      )),
    );

软件打包

如果你需要自行构建,可以使用 flutter build apk --release命令构建。 构建成功后,会在 build\app\outputs\flutter-apk\release 目录下生成 app-release.apk 文件。

请设置 minifyEnabled falseshrinkResources false,否则打包release版本后可能会出现闪退。

License

MIT

Copyright (c) 2022-present, Kuingsmile

Github star

Stargazers over time