Skip to content

Instantly share code, notes, and snippets.

@zgorizzo69
Last active November 16, 2018 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zgorizzo69/49b8233495a19cec87d884c7f9bfeabf to your computer and use it in GitHub Desktop.
Save zgorizzo69/49b8233495a19cec87d884c7f9bfeabf to your computer and use it in GitHub Desktop.
gaia blockstack storage service example
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