File tree 4 files changed +36
-1
lines changed
4 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.2.0
2
+
3
+ - Add function ` getFileFromCID ` for larger files that shouldn't be handled in memory.
4
+
1
5
## 1.1.0
2
6
3
7
- Remove redundant arguments in ` getBytesFromCID ` .
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ This is a simple cache manager for `cached_s5` libraries.
4
4
5
5
This is a library built on [ s5] ( https://pub.dev/packages/s5 ) . See there for more details.
6
6
7
+ Basic Usage:
8
+
7
9
``` dart
8
10
CachedS5Manager cacheManager = CachedS5Manager(s5: s5);
9
11
final Uint8List bytes = await cacheManager.getBytesFromCID("CID String"); // fetches & caches
Original file line number Diff line number Diff line change @@ -46,6 +46,35 @@ class CachedS5Manager {
46
46
return s5.api.downloadRawFile (CID .decode (cid).hash);
47
47
}
48
48
49
+ /// Given a [compliant] (https://docs.sfive.net/spec/blobs.html) CID string, it fetches and
50
+ /// caches that assets.
51
+ /// NOTE: Because of limitations, this will NOT WORK on web
52
+ Future <File ?> getFileFromCID (String cid) async {
53
+ // check for local existance of the file
54
+ if (! kIsWeb) {
55
+ try {
56
+ // only inits if cache dir is empty
57
+ (cacheDir == null ) ? await init () : null ;
58
+ File cidCache = await getCacheFile (cid);
59
+ if (cidCache.existsSync ()) {
60
+ return cidCache;
61
+ } else {
62
+ final Uint8List cidContents =
63
+ await s5.api.downloadRawFile (CID .decode (cid).hash);
64
+ if (cidContents.isNotEmpty) {
65
+ await cidCache.writeAsBytes (cidContents);
66
+ return cidCache;
67
+ }
68
+ }
69
+ } catch (e) {
70
+ print (e);
71
+ }
72
+ } else {
73
+ throw UnimplementedError ();
74
+ }
75
+ return null ;
76
+ }
77
+
49
78
/// Grabs the local cache file.
50
79
Future <File > getCacheFile (String cid) async {
51
80
if (cacheDir != null ) {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: cached_s5_manager
2
2
description : A cache manager for cached_s5 libraries. It handles downloading & caching from an s5 object.
3
3
repository : https://github.com/s5-dev/cached_s5_manager
4
4
homepage : https://github.com/s5-dev/cached_s5_manager
5
- version : 1.1 .0
5
+ version : 1.2 .0
6
6
7
7
environment :
8
8
sdk : ^3.4.4
You can’t perform that action at this time.
0 commit comments