Compare commits

..

6 Commits

Author SHA1 Message Date
9255875d83 1.0.40 2021-06-02 11:14:25 +02:00
346269d399 fix(core): update 2021-06-02 11:14:24 +02:00
4bb6e2ef51 1.0.39 2021-04-07 19:01:36 +00:00
0ec7e1d6c6 fix(core): update 2021-04-07 19:01:35 +00:00
bac986ac85 1.0.38 2021-04-07 18:42:03 +00:00
476ff5bbce fix(core): update 2021-04-07 18:42:03 +00:00
5 changed files with 13193 additions and 26 deletions

13201
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartbucket",
"version": "1.0.37",
"version": "1.0.40",
"description": "simple cloud independent object storage",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

View File

@ -50,7 +50,7 @@ export class Bucket {
/**
* store file
*/
public async fastStore(pathArg: string, fileContent: string) {
public async fastStore(pathArg: string, fileContent: string | Buffer): Promise<void> {
const streamIntake = new plugins.streamfunction.Intake();
const putPromise = this.smartbucketRef.minioClient
.putObject(this.name, pathArg, streamIntake.getReadable())
@ -63,14 +63,16 @@ export class Bucket {
/**
* get file
*/
public async fastGet(pathArg: string) {
public async fastGet(pathArg: string): Promise<Buffer> {
const done = plugins.smartpromise.defer();
let completeFile: Buffer;
const replaySubject = await this.fastGetStream(pathArg);
replaySubject.subscribe(
const subscription = replaySubject.subscribe(
(chunk) => {
if (completeFile) {
completeFile = Buffer.concat([completeFile, chunk]);
} else {
completeFile = chunk;
}
},
(err) => {
@ -78,6 +80,7 @@ export class Bucket {
},
() => {
done.resolve();
subscription.unsubscribe();
}
);
await done.promise;

View File

@ -169,14 +169,15 @@ export class Directory {
*/
public async move() {
// TODO
throw new Error('moving a directory is not yet implemented')
}
/**
* creates a file within this directory
* @param relativePathArg
*/
public async createFile(relativePathArg) {
let completeFilePath: string = '';
public async createEmptyFile(relativePathArg: string) {
const emtpyFile = await File.createFileFromString(this, relativePathArg, '');
}
// file operations

View File

@ -76,8 +76,8 @@ export class File {
}
public async streamContent() {
throw new Error('not yet implemented');
// TODO
throw new Error('not yet implemented');
}
/**