mirror of https://github.com/nocodb/nocodb
o1lab
4 years ago
committed by
GitHub
5 changed files with 267 additions and 1 deletions
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,118 @@ |
|||||||
|
import AWS from "aws-sdk"; |
||||||
|
import fs from "fs"; |
||||||
|
import path from "path"; |
||||||
|
import {IStorageAdapter, XcFile} from "nc-plugin"; |
||||||
|
|
||||||
|
export default class ScalewayObjectStorage implements IStorageAdapter { |
||||||
|
|
||||||
|
private s3Client: AWS.S3; |
||||||
|
private input: any; |
||||||
|
|
||||||
|
constructor(input: any) { |
||||||
|
this.input = input; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
async fileCreate(key: string, file: XcFile): Promise<any> { |
||||||
|
|
||||||
|
const uploadParams: any = { |
||||||
|
ACL: 'public-read' |
||||||
|
}; |
||||||
|
return new Promise((resolve, reject) => { |
||||||
|
// Configure the file stream and obtain the upload parameters
|
||||||
|
const fileStream = fs.createReadStream(file.path); |
||||||
|
fileStream.on('error', (err) => { |
||||||
|
console.log('File Error', err); |
||||||
|
reject(err); |
||||||
|
}); |
||||||
|
|
||||||
|
uploadParams.Body = fileStream; |
||||||
|
uploadParams.Key = key; |
||||||
|
|
||||||
|
// call S3 to retrieve upload file to specified bucket
|
||||||
|
this.s3Client.upload(uploadParams, (err, data) => { |
||||||
|
if (err) { |
||||||
|
console.log("Error", err); |
||||||
|
reject(err); |
||||||
|
} |
||||||
|
if (data) { |
||||||
|
resolve(data.Location); |
||||||
|
} |
||||||
|
}); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public async fileDelete(_path: string): Promise<any> { |
||||||
|
return Promise.resolve(undefined); |
||||||
|
} |
||||||
|
|
||||||
|
public async fileRead(key: string): Promise<any> { |
||||||
|
return new Promise((resolve, reject) => { |
||||||
|
this.s3Client.getObject({Key: key} as any, (err, data) => { |
||||||
|
if (err) { |
||||||
|
return reject(err); |
||||||
|
} |
||||||
|
if (!data?.Body) { |
||||||
|
return reject(data); |
||||||
|
} |
||||||
|
return resolve(data.Body); |
||||||
|
}); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public async init(): Promise<any> { |
||||||
|
const s3Options: any = { |
||||||
|
params: {Bucket: this.input.bucket}, |
||||||
|
region: this.input.region |
||||||
|
}; |
||||||
|
|
||||||
|
s3Options.accessKeyId = this.input.access_key |
||||||
|
s3Options.secretAccessKey = this.input.access_secret; |
||||||
|
|
||||||
|
s3Options.endpoint = new AWS.Endpoint(`s3.${this.input.region}.scw.cloud`); |
||||||
|
|
||||||
|
this.s3Client = new AWS.S3(s3Options); |
||||||
|
} |
||||||
|
|
||||||
|
public async test(): Promise<boolean> { |
||||||
|
try { |
||||||
|
const tempFile = path.join(process.cwd(), 'temp.txt'); |
||||||
|
const createStream = fs.createWriteStream(tempFile); |
||||||
|
createStream.end(); |
||||||
|
await this.fileCreate('/test.txt', { |
||||||
|
path: tempFile, |
||||||
|
mimetype: '', |
||||||
|
originalname: 'temp.txt', |
||||||
|
size: '' |
||||||
|
}); |
||||||
|
fs.unlinkSync(tempFile); |
||||||
|
return true; |
||||||
|
} catch (e) { |
||||||
|
throw e; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @copyright Copyright (c) 2021, Bhanu P Chaudhary <bhanu423@gmail.com> |
||||||
|
* |
||||||
|
* @author Bhanu P Chaudhary <bhanu423@gmail.com> |
||||||
|
* |
||||||
|
* @license GNU AGPL version 3 or any later version |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU Affero General Public License as |
||||||
|
* published by the Free Software Foundation, either version 3 of the |
||||||
|
* License, or (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU Affero General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU Affero General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||||
|
* |
||||||
|
*/ |
@ -0,0 +1,43 @@ |
|||||||
|
import {IStorageAdapter, XcStoragePlugin} from "nc-plugin"; |
||||||
|
import ScalewayObjectStorage from "./ScalewayObjectStorage"; |
||||||
|
|
||||||
|
|
||||||
|
class ScalewayObjectStoragePlugin extends XcStoragePlugin { |
||||||
|
|
||||||
|
private static storageAdapter: ScalewayObjectStorage; |
||||||
|
|
||||||
|
public getAdapter(): IStorageAdapter { |
||||||
|
return ScalewayObjectStoragePlugin.storageAdapter; |
||||||
|
} |
||||||
|
|
||||||
|
public async init(config: any): Promise<any> { |
||||||
|
ScalewayObjectStoragePlugin.storageAdapter = new ScalewayObjectStorage(config); |
||||||
|
await ScalewayObjectStoragePlugin.storageAdapter.init(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
export default ScalewayObjectStoragePlugin; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @copyright Copyright (c) 2021, Bhanu P Chaudhary <bhanu423@gmail.com> |
||||||
|
* |
||||||
|
* @author Bhanu P Chaudhary <bhanu423@gmail.com> |
||||||
|
* |
||||||
|
* @license GNU AGPL version 3 or any later version |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU Affero General Public License as |
||||||
|
* published by the Free Software Foundation, either version 3 of the |
||||||
|
* License, or (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU Affero General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU Affero General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||||
|
* |
||||||
|
*/ |
@ -0,0 +1,80 @@ |
|||||||
|
import {XcPluginConfig} from "nc-plugin"; |
||||||
|
import ScalewayObjectStoragePlugin from "./ScalewayObjectStoragePlugin"; |
||||||
|
import {XcActionType, XcType} from "nc-common"; |
||||||
|
|
||||||
|
const config: XcPluginConfig = { |
||||||
|
builder: ScalewayObjectStoragePlugin, |
||||||
|
title: 'Scaleway Object Storage', |
||||||
|
version: '0.0.1', |
||||||
|
logo: 'plugins/scaleway.png', |
||||||
|
tags: 'Storage', |
||||||
|
description: 'S3-compatible Scaleway Object Storage makes it easy and more affordable to store and access data on Scaleway Cloud Platform infrastructure. The service also gives a 75GB free storage and external outgoing transfer on Object Storage every month', |
||||||
|
inputs: { |
||||||
|
title: 'Configure Scaleway Object Storage', |
||||||
|
items: [{ |
||||||
|
key: 'bucket', |
||||||
|
label: 'Bucket Name', |
||||||
|
placeholder: 'Bucket Name', |
||||||
|
type: XcType.SingleLineText, |
||||||
|
required: true |
||||||
|
}, { |
||||||
|
key: 'region', |
||||||
|
label: 'Region', |
||||||
|
placeholder: 'Region', |
||||||
|
type: XcType.SingleLineText, |
||||||
|
required: true |
||||||
|
}, { |
||||||
|
key: 'access_key', |
||||||
|
label: 'Access Key', |
||||||
|
placeholder: 'Access Key', |
||||||
|
type: XcType.SingleLineText, |
||||||
|
required: true |
||||||
|
}, { |
||||||
|
key: 'access_secret', |
||||||
|
label: 'Access Secret', |
||||||
|
placeholder: 'Access Secret', |
||||||
|
type: XcType.Password, |
||||||
|
required: true |
||||||
|
},], |
||||||
|
actions: [{ |
||||||
|
label: 'Test', |
||||||
|
placeholder: 'Test', |
||||||
|
key: 'test', |
||||||
|
actionType: XcActionType.TEST, |
||||||
|
type: XcType.Button |
||||||
|
}, { |
||||||
|
label: 'Save', |
||||||
|
placeholder: 'Save', |
||||||
|
key: 'save', |
||||||
|
actionType: XcActionType.SUBMIT, |
||||||
|
type: XcType.Button |
||||||
|
},], |
||||||
|
msgOnInstall: 'Successfully installed and attachment will be stored in Scaleway Object Storage', |
||||||
|
msgOnUninstall: '', |
||||||
|
}, |
||||||
|
category: 'Storage', |
||||||
|
} |
||||||
|
|
||||||
|
export default config; |
||||||
|
|
||||||
|
/** |
||||||
|
* @copyright Copyright (c) 2021, Bhanu P Chaudhary <bhanu423@gmail.com> |
||||||
|
* |
||||||
|
* @author Bhanu P Chaudhary <bhanu423@gmail.com> |
||||||
|
* |
||||||
|
* @license GNU AGPL version 3 or any later version |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU Affero General Public License as |
||||||
|
* published by the Free Software Foundation, either version 3 of the |
||||||
|
* License, or (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU Affero General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU Affero General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||||
|
* |
||||||
|
*/ |
Loading…
Reference in new issue