Skip to content

Commit b88eb1d

Browse files
committed
feat: add getFileFromCID
1 parent 662d285 commit b88eb1d

File tree

4 files changed

+36
-1
lines changed

4 files changed

+36
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.0
2+
3+
- Add function `getFileFromCID` for larger files that shouldn't be handled in memory.
4+
15
## 1.1.0
26

37
- Remove redundant arguments in `getBytesFromCID`.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This is a simple cache manager for `cached_s5` libraries.
44

55
This is a library built on [s5](https://pub.dev/packages/s5). See there for more details.
66

7+
Basic Usage:
8+
79
```dart
810
CachedS5Manager cacheManager = CachedS5Manager(s5: s5);
911
final Uint8List bytes = await cacheManager.getBytesFromCID("CID String"); // fetches & caches

lib/src/cached_s5_manager.dart

+29
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,35 @@ class CachedS5Manager {
4646
return s5.api.downloadRawFile(CID.decode(cid).hash);
4747
}
4848

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+
4978
/// Grabs the local cache file.
5079
Future<File> getCacheFile(String cid) async {
5180
if (cacheDir != null) {

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: cached_s5_manager
22
description: A cache manager for cached_s5 libraries. It handles downloading & caching from an s5 object.
33
repository: https://github.com/s5-dev/cached_s5_manager
44
homepage: https://github.com/s5-dev/cached_s5_manager
5-
version: 1.1.0
5+
version: 1.2.0
66

77
environment:
88
sdk: ^3.4.4

0 commit comments

Comments
 (0)