Last active
November 16, 2018 12:10
-
-
Save zgorizzo69/49b8233495a19cec87d884c7f9bfeabf to your computer and use it in GitHub Desktop.
gaia blockstack storage service example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injectable } from '@angular/core'; | |
import * as blockstack from 'blockstack'; | |
import { Observable, from, of } from 'rxjs'; | |
import { tap, map, catchError } from 'rxjs/operators'; | |
@Injectable({ | |
providedIn: 'root' | |
}) | |
export class StorageService { | |
constructor() { } | |
public getFile<T>(path: string, inClearText: boolean = false, otherUser: string = null): Observable<T> { | |
const options = { decrypt: !inClearText, username: otherUser }; | |
return from(blockstack.getFile(path, options)) | |
.pipe( | |
tap(x => console.log(`File for user ${otherUser || 'this is myself'} read at ${path} : ${x}`)), | |
map((x: string) => JSON.parse(x)), | |
catchError((err) => { | |
console.error('ERROR getFile for path:', path, err); | |
return of(null); | |
}) | |
); | |
} | |
public writeFile<T>(path: string, data: T, inClearText: boolean = false): Observable<boolean> { | |
const content = JSON.stringify(data); | |
const options = { encrypt: !inClearText }; | |
return from(blockstack.putFile(path, content, options)) | |
.pipe( | |
tap(x => console.log(`File written at ${path} : ${x}`)), | |
map(x => true), | |
catchError((err) => { | |
console.error('ERROR writePrivateNote for path:', path, err); | |
return of(false); | |
}) | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment