Feature/ipfsServices (#35)
This commit is contained in:
commit
f7394dcb19
@ -40,6 +40,7 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/smart-chain-fr/leCoffre-back#readme",
|
"homepage": "https://github.com/smart-chain-fr/leCoffre-back#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@pinata/sdk": "^2.1.0",
|
||||||
"@prisma/client": "^4.11.0",
|
"@prisma/client": "^4.11.0",
|
||||||
"class-transformer": "^0.5.1",
|
"class-transformer": "^0.5.1",
|
||||||
"class-validator": "^0.14.0",
|
"class-validator": "^0.14.0",
|
||||||
@ -47,8 +48,9 @@
|
|||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"jsonwebtoken": "^9.0.0",
|
"jsonwebtoken": "^9.0.0",
|
||||||
"le-coffre-resources": "git@github.com:smart-chain-fr/leCoffre-resources.git#v2.37",
|
"le-coffre-resources": "git@github.com:smart-chain-fr/leCoffre-resources.git#v2.38",
|
||||||
"module-alias": "^2.2.2",
|
"module-alias": "^2.2.2",
|
||||||
|
"multer": "^1.4.5-lts.1",
|
||||||
"next": "^13.1.5",
|
"next": "^13.1.5",
|
||||||
"node-cache": "^5.1.2",
|
"node-cache": "^5.1.2",
|
||||||
"node-schedule": "^2.1.1",
|
"node-schedule": "^2.1.1",
|
||||||
@ -65,6 +67,7 @@
|
|||||||
"@types/express": "^4.17.16",
|
"@types/express": "^4.17.16",
|
||||||
"@types/jest": "^29.5.0",
|
"@types/jest": "^29.5.0",
|
||||||
"@types/jsonwebtoken": "^9.0.1",
|
"@types/jsonwebtoken": "^9.0.1",
|
||||||
|
"@types/multer": "^1.4.7",
|
||||||
"@types/node": "^18.11.18",
|
"@types/node": "^18.11.18",
|
||||||
"@types/node-schedule": "^2.1.0",
|
"@types/node-schedule": "^2.1.0",
|
||||||
"@types/uuid": "^9.0.0",
|
"@types/uuid": "^9.0.0",
|
||||||
|
153
src/app/api/super-admin/FilesController.ts
Normal file
153
src/app/api/super-admin/FilesController.ts
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
import { Response, Request } from "express";
|
||||||
|
import { Controller, Delete, Get, Post, Put } from "@ControllerPattern/index";
|
||||||
|
import ApiController from "@Common/system/controller-pattern/ApiController";
|
||||||
|
import { Service } from "typedi";
|
||||||
|
import FilesService from "@Services/private-services/FilesService/FilesService";
|
||||||
|
import { Files } from "@prisma/client";
|
||||||
|
import { File } from "le-coffre-resources/dist/SuperAdmin";
|
||||||
|
import { validateOrReject } from "class-validator";
|
||||||
|
|
||||||
|
@Controller()
|
||||||
|
@Service()
|
||||||
|
export default class FilesController extends ApiController {
|
||||||
|
constructor(private filesService: FilesService) {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Get all Files
|
||||||
|
* @returns File[] list of Files
|
||||||
|
*/
|
||||||
|
@Get("/api/v1/super-admin/files")
|
||||||
|
protected async get(req: Request, response: Response) {
|
||||||
|
try {
|
||||||
|
//get query
|
||||||
|
const query = JSON.parse(req.query["q"] as string);
|
||||||
|
|
||||||
|
//call service to get prisma entity
|
||||||
|
const prismaEntity = await this.filesService.get(query);
|
||||||
|
|
||||||
|
//Hydrate ressource with prisma entity
|
||||||
|
const files = File.map<File>(File, prismaEntity, { strategy: "excludeAll" });
|
||||||
|
|
||||||
|
//success
|
||||||
|
this.httpSuccess(response, files);
|
||||||
|
} catch (error) {
|
||||||
|
this.httpBadRequest(response, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Create a new File
|
||||||
|
* @returns File created
|
||||||
|
*/
|
||||||
|
@Post("/api/v1/super-admin/files")
|
||||||
|
protected async post(req: Request, response: Response) {
|
||||||
|
try {
|
||||||
|
|
||||||
|
//get file
|
||||||
|
if(!req.file) throw new Error('No file provided')
|
||||||
|
|
||||||
|
//init File resource with request body values
|
||||||
|
const fileEntity = File.hydrate<File>(JSON.parse(req.body["q"]));
|
||||||
|
|
||||||
|
//validate File
|
||||||
|
await validateOrReject(fileEntity, { groups: ["createFile"] });
|
||||||
|
|
||||||
|
//call service to get prisma entity
|
||||||
|
const prismaEntityCreated = await this.filesService.create(fileEntity, req.file);
|
||||||
|
|
||||||
|
//Hydrate ressource with prisma entity
|
||||||
|
const fileEntityCreated = File.hydrate<File>(prismaEntityCreated, {
|
||||||
|
strategy: "excludeAll",
|
||||||
|
});
|
||||||
|
|
||||||
|
//success
|
||||||
|
this.httpSuccess(response, fileEntityCreated);
|
||||||
|
} catch (error) {
|
||||||
|
this.httpBadRequest(response, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Update a specific file
|
||||||
|
*/
|
||||||
|
@Put("/api/v1/super-admin/files/:uid")
|
||||||
|
protected async update(req: Request, response: Response) {
|
||||||
|
try {
|
||||||
|
const uid = req.params["uid"];
|
||||||
|
if (!uid) {
|
||||||
|
throw new Error("No uid provided");
|
||||||
|
}
|
||||||
|
|
||||||
|
//init File resource with request body values
|
||||||
|
const fileEntity = File.hydrate<File>(req.body);
|
||||||
|
|
||||||
|
//validate file
|
||||||
|
await validateOrReject(fileEntity, { groups: ["create"] });
|
||||||
|
|
||||||
|
//call service to get prisma entity
|
||||||
|
const prismaEntityUpdated: Files = await this.filesService.update(uid, fileEntity);
|
||||||
|
|
||||||
|
//Hydrate ressource with prisma entity
|
||||||
|
const file = File.hydrate<File>(prismaEntityUpdated, { strategy: "excludeAll" });
|
||||||
|
|
||||||
|
//success
|
||||||
|
this.httpSuccess(response, file);
|
||||||
|
} catch (error) {
|
||||||
|
this.httpBadRequest(response, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Delete a specific File
|
||||||
|
*/
|
||||||
|
@Delete("/api/v1/super-admin/files/:uid")
|
||||||
|
protected async delete(req: Request, response: Response) {
|
||||||
|
try {
|
||||||
|
const uid = req.params["uid"];
|
||||||
|
if (!uid) {
|
||||||
|
throw new Error("No uid provided");
|
||||||
|
}
|
||||||
|
|
||||||
|
//call service to get prisma entity
|
||||||
|
const fileEntity: Files = await this.filesService.delete(uid);
|
||||||
|
|
||||||
|
//Hydrate ressource with prisma entity
|
||||||
|
const file = File.hydrate<File>(fileEntity, { strategy: "excludeAll" });
|
||||||
|
|
||||||
|
//success
|
||||||
|
this.httpSuccess(response, file);
|
||||||
|
} catch (error) {
|
||||||
|
this.httpBadRequest(response, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Get a specific File by uid
|
||||||
|
*/
|
||||||
|
@Get("/api/v1/super-admin/Files/:uid")
|
||||||
|
protected async getOneByUid(req: Request, response: Response) {
|
||||||
|
try {
|
||||||
|
const uid = req.params["uid"];
|
||||||
|
if (!uid) {
|
||||||
|
throw new Error("No uid provided");
|
||||||
|
}
|
||||||
|
|
||||||
|
const fileEntity = await this.filesService.getByUid(uid);
|
||||||
|
|
||||||
|
//Hydrate ressource with prisma entity
|
||||||
|
const file = File.hydrate<File>(fileEntity, { strategy: "excludeAll" });
|
||||||
|
|
||||||
|
//success
|
||||||
|
this.httpSuccess(response, file);
|
||||||
|
} catch (error) {
|
||||||
|
this.httpBadRequest(response, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -9,8 +9,8 @@ import DeedTypesController from "./api/super-admin/DeedTypesController";
|
|||||||
import DocumentsController from "./api/super-admin/DocumentsController";
|
import DocumentsController from "./api/super-admin/DocumentsController";
|
||||||
import DocumentTypesController from "./api/super-admin/DocumentTypesController";
|
import DocumentTypesController from "./api/super-admin/DocumentTypesController";
|
||||||
import IdNotUserInfoController from "./api/idnot-user/UserInfoController";
|
import IdNotUserInfoController from "./api/idnot-user/UserInfoController";
|
||||||
|
|
||||||
import DocumentsControllerCustomer from "./api/customer/DocumentsController";
|
import DocumentsControllerCustomer from "./api/customer/DocumentsController";
|
||||||
|
import FilesController from "./api/super-admin/FilesController";
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -28,7 +28,7 @@ export default {
|
|||||||
Container.get(DocumentsController);
|
Container.get(DocumentsController);
|
||||||
Container.get(DocumentTypesController);
|
Container.get(DocumentTypesController);
|
||||||
Container.get(IdNotUserInfoController);
|
Container.get(IdNotUserInfoController);
|
||||||
|
Container.get(FilesController);
|
||||||
Container.get(DocumentsControllerCustomer);
|
Container.get(DocumentsControllerCustomer);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
22
src/app/middlewares/FileHandler.ts
Normal file
22
src/app/middlewares/FileHandler.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { NextFunction, Request, Response } from "express";
|
||||||
|
import multer from "multer";
|
||||||
|
|
||||||
|
export default function fileHandler(req: Request, response: Response, next: NextFunction) {
|
||||||
|
const storage = multer.memoryStorage()
|
||||||
|
const upload = multer({storage:storage}).single('file');
|
||||||
|
|
||||||
|
// Here call the upload middleware of multer
|
||||||
|
upload(req, response, function (err) {
|
||||||
|
if (err instanceof multer.MulterError) {
|
||||||
|
// A Multer error occurred when uploading.
|
||||||
|
const err = new Error('Multer error');
|
||||||
|
return next(err)
|
||||||
|
} else if (err) {
|
||||||
|
// An unknown error occurred when uploading.
|
||||||
|
const err = new Error('Server Error')
|
||||||
|
return next(err)
|
||||||
|
}
|
||||||
|
next()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
@ -45,6 +45,18 @@ export class BackendVariables {
|
|||||||
@IsNotEmpty()
|
@IsNotEmpty()
|
||||||
public readonly IDNOT_REDIRECT_URL!: string;
|
public readonly IDNOT_REDIRECT_URL!: string;
|
||||||
|
|
||||||
|
@IsNotEmpty()
|
||||||
|
public readonly PINATA_API_KEY!: string;
|
||||||
|
|
||||||
|
@IsNotEmpty()
|
||||||
|
public readonly PINATA_API_SECRET!: string;
|
||||||
|
|
||||||
|
@IsNotEmpty()
|
||||||
|
public readonly PINATA_GATEWAY!: string;
|
||||||
|
|
||||||
|
@IsNotEmpty()
|
||||||
|
public readonly KEY_DATA!: string;
|
||||||
|
|
||||||
public constructor() {
|
public constructor() {
|
||||||
dotenv.config();
|
dotenv.config();
|
||||||
this.DATABASE_PORT = process.env["DATABASE_PORT"]!;
|
this.DATABASE_PORT = process.env["DATABASE_PORT"]!;
|
||||||
@ -60,6 +72,10 @@ export class BackendVariables {
|
|||||||
this.IDNOT_CLIENT_ID = process.env["IDNOT_CLIENT_ID"]!;
|
this.IDNOT_CLIENT_ID = process.env["IDNOT_CLIENT_ID"]!;
|
||||||
this.IDNOT_CLIENT_SECRET = process.env["IDNOT_CLIENT_SECRET"]!;
|
this.IDNOT_CLIENT_SECRET = process.env["IDNOT_CLIENT_SECRET"]!;
|
||||||
this.IDNOT_REDIRECT_URL = process.env["IDNOT_REDIRECT_URL"]!;
|
this.IDNOT_REDIRECT_URL = process.env["IDNOT_REDIRECT_URL"]!;
|
||||||
|
this.PINATA_API_KEY = process.env["PINATA_API_KEY"]!;
|
||||||
|
this.PINATA_API_SECRET = process.env["PINATA_API_SECRET"]!;
|
||||||
|
this.PINATA_GATEWAY = process.env["PINATA_GATEWAY"]!;
|
||||||
|
this.KEY_DATA = process.env["KEY_DATA"]!;
|
||||||
}
|
}
|
||||||
public async validate() {
|
public async validate() {
|
||||||
await validateOrReject(this);
|
await validateOrReject(this);
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
/*
|
||||||
|
Warnings:
|
||||||
|
|
||||||
|
- Added the required column `iv` to the `files` table without a default value. This is not possible if the table is not empty.
|
||||||
|
|
||||||
|
*/
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "files" ADD COLUMN "iv" VARCHAR(255) NOT NULL;
|
@ -0,0 +1,8 @@
|
|||||||
|
/*
|
||||||
|
Warnings:
|
||||||
|
|
||||||
|
- Added the required column `file_name` to the `files` table without a default value. This is not possible if the table is not empty.
|
||||||
|
|
||||||
|
*/
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "files" ADD COLUMN "file_name" VARCHAR(255) NOT NULL;
|
@ -203,6 +203,8 @@ model Files {
|
|||||||
document Documents @relation(fields: [document_uid], references: [uid], onDelete: Cascade)
|
document Documents @relation(fields: [document_uid], references: [uid], onDelete: Cascade)
|
||||||
document_uid String @db.VarChar(255)
|
document_uid String @db.VarChar(255)
|
||||||
file_path String @unique @db.VarChar(255)
|
file_path String @unique @db.VarChar(255)
|
||||||
|
file_name String @db.VarChar(255)
|
||||||
|
iv String @db.VarChar(255)
|
||||||
created_at DateTime? @default(now())
|
created_at DateTime? @default(now())
|
||||||
updated_at DateTime? @updatedAt
|
updated_at DateTime? @updatedAt
|
||||||
|
|
||||||
|
@ -379,14 +379,18 @@ import {
|
|||||||
{
|
{
|
||||||
uid: uidFiles1,
|
uid: uidFiles1,
|
||||||
document_uid: uidDocument1,
|
document_uid: uidDocument1,
|
||||||
|
file_name: "fileName1",
|
||||||
file_path: "https://www.google1.com",
|
file_path: "https://www.google1.com",
|
||||||
|
iv: "randomIv1",
|
||||||
created_at: new Date(),
|
created_at: new Date(),
|
||||||
updated_at: new Date(),
|
updated_at: new Date(),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
uid: uidFiles2,
|
uid: uidFiles2,
|
||||||
document_uid: uidDocument2,
|
document_uid: uidDocument2,
|
||||||
|
file_name: "fileName2",
|
||||||
file_path: "https://www.google2.com",
|
file_path: "https://www.google2.com",
|
||||||
|
iv: "randomIv2",
|
||||||
created_at: new Date(),
|
created_at: new Date(),
|
||||||
updated_at: new Date(),
|
updated_at: new Date(),
|
||||||
},
|
},
|
||||||
|
@ -10,4 +10,14 @@ export default abstract class ObjectHydrate {
|
|||||||
return plainToInstance(ClassEntity, from, options);
|
return plainToInstance(ClassEntity, from, options);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// public static fromTypeToRessource<T>(ClassEntity: { new (): T }, from: Record<string, unknown>): T {
|
||||||
|
// const properties = Object.getOwnPropertyNames(ClassEntity);
|
||||||
|
// const classInstance = new ClassEntity() as T;
|
||||||
|
// properties.forEach((property) => {
|
||||||
|
// if (property in from) {
|
||||||
|
// classInstance[property] = from[property] as T[keyof T];
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
@ -35,8 +35,11 @@ export default class FilesRepository extends BaseRepository {
|
|||||||
uid: file.document!.uid,
|
uid: file.document!.uid,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
file_name: file.file_name,
|
||||||
file_path: file.file_path,
|
file_path: file.file_path,
|
||||||
|
iv: file.iv
|
||||||
},
|
},
|
||||||
|
include: { document: true }
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ import bodyParser from "body-parser";
|
|||||||
// import TezosLink from "@Common/databases/TezosLink";
|
// import TezosLink from "@Common/databases/TezosLink";
|
||||||
import errorHandler from "@App/middlewares/ErrorHandler";
|
import errorHandler from "@App/middlewares/ErrorHandler";
|
||||||
import { BackendVariables } from "@Common/config/variables/Variables";
|
import { BackendVariables } from "@Common/config/variables/Variables";
|
||||||
|
import fileHandler from "@App/middlewares/FileHandler";
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
@ -22,7 +23,7 @@ import { BackendVariables } from "@Common/config/variables/Variables";
|
|||||||
label,
|
label,
|
||||||
port: parseInt(port),
|
port: parseInt(port),
|
||||||
rootUrl,
|
rootUrl,
|
||||||
middlwares: [cors({ origin: "*" }), bodyParser.urlencoded({ extended: true }), bodyParser.json()],
|
middlwares: [cors({ origin: "*" }), fileHandler, bodyParser.urlencoded({ extended: true }), bodyParser.json()],
|
||||||
errorHandler,
|
errorHandler,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
66
src/services/private-services/CryptoService/CryptoService.ts
Normal file
66
src/services/private-services/CryptoService/CryptoService.ts
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
import BaseService from "@Services/BaseService";
|
||||||
|
import { Service } from "typedi";
|
||||||
|
import { BackendVariables } from "@Common/config/variables/Variables";
|
||||||
|
import crypto from "crypto";
|
||||||
|
|
||||||
|
@Service()
|
||||||
|
export default class CryptoService extends BaseService {
|
||||||
|
private jwkKey: JsonWebKey;
|
||||||
|
private subtle: SubtleCrypto = crypto.webcrypto.subtle
|
||||||
|
constructor(protected variables: BackendVariables) {
|
||||||
|
super();
|
||||||
|
this.jwkKey = {
|
||||||
|
kty: "oct",
|
||||||
|
k: variables.KEY_DATA,
|
||||||
|
alg: "A256GCM",
|
||||||
|
ext: true,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private async getKey() {
|
||||||
|
return await this.subtle.importKey("jwk", this.jwkKey, {name: "AES-GCM"}, false, ["encrypt", "decrypt"]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description : encrypt data
|
||||||
|
* @throws {Error} If data cannot be encrypted
|
||||||
|
*/
|
||||||
|
public async encrypt(data: string) {
|
||||||
|
const encodedData = Buffer.from(data);
|
||||||
|
const iv = crypto.getRandomValues(new Uint8Array(16));
|
||||||
|
const key = await this.getKey();
|
||||||
|
const cipherData = await this.subtle.encrypt(
|
||||||
|
{
|
||||||
|
name: "AES-GCM",
|
||||||
|
iv,
|
||||||
|
},
|
||||||
|
key,
|
||||||
|
encodedData,
|
||||||
|
);
|
||||||
|
|
||||||
|
const cipherText = Buffer.from(cipherData).toString('base64');
|
||||||
|
const ivStringified = Buffer.from(iv).toString('base64');
|
||||||
|
|
||||||
|
return { cipherText, ivStringified };
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description : decrypt data with an initialization vector
|
||||||
|
* @throws {Error} If data cannot be decrypted
|
||||||
|
*/
|
||||||
|
public async decrypt(cipherText: string, ivStringified: string): Promise<string> {
|
||||||
|
const cipherData = Buffer.from(cipherText, 'base64');
|
||||||
|
const iv = Buffer.from(ivStringified, 'base64');
|
||||||
|
const key = await this.getKey();
|
||||||
|
const decryptedData = await this.subtle.decrypt(
|
||||||
|
{
|
||||||
|
name: "AES-GCM",
|
||||||
|
iv,
|
||||||
|
},
|
||||||
|
key,
|
||||||
|
cipherData,
|
||||||
|
);
|
||||||
|
|
||||||
|
return Buffer.from(decryptedData).toString('utf-8');
|
||||||
|
}
|
||||||
|
}
|
@ -2,10 +2,15 @@ import FilesRepository from "@Repositories/FilesRepository";
|
|||||||
import BaseService from "@Services/BaseService";
|
import BaseService from "@Services/BaseService";
|
||||||
import { Service } from "typedi";
|
import { Service } from "typedi";
|
||||||
import { File } from "le-coffre-resources/dist/SuperAdmin"
|
import { File } from "le-coffre-resources/dist/SuperAdmin"
|
||||||
|
import CryptoService from "../CryptoService/CryptoService";
|
||||||
|
import IpfsService from "../IpfsService/IpfsService";
|
||||||
|
//import fs from "fs";
|
||||||
|
import { BackendVariables } from "@Common/config/variables/Variables";
|
||||||
|
import { Readable } from "stream";
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
export default class FilesService extends BaseService {
|
export default class FilesService extends BaseService {
|
||||||
constructor(private filesRepository: FilesRepository) {
|
constructor(private filesRepository: FilesRepository, private ipfsService: IpfsService, private variables: BackendVariables, private cryptoService: CryptoService) {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -21,7 +26,12 @@ export default class FilesService extends BaseService {
|
|||||||
* @description : Create a new file
|
* @description : Create a new file
|
||||||
* @throws {Error} If file cannot be created
|
* @throws {Error} If file cannot be created
|
||||||
*/
|
*/
|
||||||
public async create(file: File) {
|
public async create(file: File, fileData: Express.Multer.File) {
|
||||||
|
const upload = await this.ipfsService.pinFile(Readable.from(fileData.buffer), fileData.originalname);
|
||||||
|
const encryptedPath = await this.cryptoService.encrypt(this.variables.PINATA_GATEWAY.concat(upload.IpfsHash));
|
||||||
|
file.file_name = fileData.originalname;
|
||||||
|
file.file_path = encryptedPath.cipherText;
|
||||||
|
file.iv = encryptedPath.ivStringified;
|
||||||
return this.filesRepository.create(file);
|
return this.filesRepository.create(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -29,10 +39,22 @@ export default class FilesService extends BaseService {
|
|||||||
* @description : Modify a new file
|
* @description : Modify a new file
|
||||||
* @throws {Error} If file cannot be modified
|
* @throws {Error} If file cannot be modified
|
||||||
*/
|
*/
|
||||||
public async put(uid: string, file: File) {
|
public async update(uid: string, file: File) {
|
||||||
return this.filesRepository.update(uid, file);
|
return this.filesRepository.update(uid, file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description : Delete a file
|
||||||
|
* @throws {Error} If file cannot be deleted
|
||||||
|
*/
|
||||||
|
public async delete(uid: string) {
|
||||||
|
const fileToUnpin = await this.filesRepository.findOneByUid(uid);
|
||||||
|
const decryptedFilePath = await this.cryptoService.decrypt(fileToUnpin.file_path, fileToUnpin.iv);
|
||||||
|
const fileHash= decryptedFilePath.substring(this.variables.PINATA_GATEWAY.length);
|
||||||
|
await this.ipfsService.unpinFile(fileHash)
|
||||||
|
return this.filesRepository.delete(uid);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description : Get a file by uid
|
* @description : Get a file by uid
|
||||||
* @throws {Error} If project cannot be created
|
* @throws {Error} If project cannot be created
|
||||||
|
30
src/services/private-services/IpfsService/IpfsService.ts
Normal file
30
src/services/private-services/IpfsService/IpfsService.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import BaseService from "@Services/BaseService";
|
||||||
|
import { Service } from "typedi";
|
||||||
|
import pinataSDK from "@pinata/sdk";
|
||||||
|
import { BackendVariables } from "@Common/config/variables/Variables";
|
||||||
|
import { Readable } from "stream";
|
||||||
|
|
||||||
|
@Service()
|
||||||
|
export default class FilesService extends BaseService {
|
||||||
|
private ipfsClient: pinataSDK;
|
||||||
|
constructor(protected variables: BackendVariables) {
|
||||||
|
super();
|
||||||
|
this.ipfsClient = new pinataSDK({ pinataApiKey: variables.PINATA_API_KEY, pinataSecretApiKey: variables.PINATA_API_SECRET })
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description : pin a file
|
||||||
|
* @throws {Error} If file cannot be pinned
|
||||||
|
*/
|
||||||
|
public async pinFile(stream: Readable, fileName: string) {
|
||||||
|
return this.ipfsClient.pinFileToIPFS(stream, {pinataMetadata : {name: fileName}});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description : unpin a file
|
||||||
|
* @throws {Error} If file cannot be unpinned
|
||||||
|
*/
|
||||||
|
public async unpinFile(hashToUnpin: string) {
|
||||||
|
return this.ipfsClient.unpin(hashToUnpin);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user