All files / src/platform/storage storage-hub.service.ts

0% Statements 0/82
0% Branches 0/52
0% Functions 0/8
0% Lines 0/79

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
import {
  Injectable,
  Logger,
  BadRequestException,
  NotFoundException,
} from '@nestjs/common';
import { InjectModel } from '@nestjs/mongoose';
import { Model } from 'mongoose';
import {
  StorageVolume,
  StorageAllocation,
  StorageObject,
  StorageObjectVersion,
  StorageAccessToken,
} from './schemas/storage-hub.schema';
import { LocalVpsStorageProvider } from './providers/local-vps.provider';
import * as crypto from 'crypto';
 
@Injectable()
export class StorageHubService {
  private readonly logger = new Logger(StorageHubService.name);
 
  constructor(
    @InjectModel(StorageVolume.name)
    private readonly volumeModel: Model<StorageVolume>,
    @InjectModel(StorageAllocation.name)
    private readonly allocationModel: Model<StorageAllocation>,
    @InjectModel(StorageObject.name)
    private readonly objectModel: Model<StorageObject>,
    @InjectModel(StorageObjectVersion.name)
    private readonly versionModel: Model<StorageObjectVersion>,
    @InjectModel(StorageAccessToken.name)
    private readonly tokenModel: Model<StorageAccessToken>,
    private readonly vpsProvider: LocalVpsStorageProvider,
  ) {}
 
  async getOrCreateVolume(): Promise<StorageVolume> {
    let vol = await this.volumeModel.findOne({ isActive: true }).exec();
    if (!vol) {
      vol = await this.volumeModel.create({
        volumeId: 'vol-default',
        name: 'Primary VPS Volume',
        rootPath: '/var/lib/bevision',
        capacityBytes: 50 * 1024 * 1024 * 1024, // 50 GB default
        usedBytes: 0,
      });
    }
    return vol;
  }
 
  async uploadFile(
    tenantId: string,
    params: { key: string; filename: string; mimeType: string; buffer: Buffer },
  ): Promise<StorageObject> {
    const vol = await this.getOrCreateVolume();
 
    // 1. Quota check
    const allocation = await this.allocationModel.findOne({ tenantId }).exec();
    if (allocation) {
      if (
        allocation.usedBytes + params.buffer.length >
        allocation.allocatedBytes
      ) {
        throw new BadRequestException('Storage quota exceeded for this tenant');
      }
    }
 
    // 2. Upload to volume
    const relativePath = `${params.key}/${params.filename}`;
    const uploadResult = await this.vpsProvider.upload(
      tenantId,
      relativePath,
      params.buffer,
      vol.rootPath,
    );
 
    // 3. Register object
    const existing = await this.objectModel
      .findOne({ tenantId, key: params.key })
      .exec();
    if (existing) {
      // Create version increment
      await this.versionModel.create({
        objectId: (existing as any)._id.toString(),
        key: existing.key,
        version: existing.version,
        relativePath: existing.relativePath,
        sizeBytes: existing.sizeBytes,
        checksum: existing.checksum,
      });
 
      existing.filename = params.filename;
      existing.relativePath = relativePath;
      existing.mimeType = params.mimeType;
      existing.sizeBytes = uploadResult.size;
      existing.checksum = uploadResult.checksum;
      existing.version += 1;
      await existing.save();
 
      // Update allocation usage
      if (allocation) {
        allocation.usedBytes += uploadResult.size - existing.sizeBytes;
        await allocation.save();
      }
 
      return existing;
    }
 
    const storageObj = await this.objectModel.create({
      tenantId,
      key: params.key,
      filename: params.filename,
      volumeId: vol.volumeId,
      relativePath,
      mimeType: params.mimeType,
      sizeBytes: uploadResult.size,
      checksum: uploadResult.checksum,
      version: 1,
    });
 
    if (allocation) {
      allocation.usedBytes += uploadResult.size;
      await allocation.save();
    }
 
    return storageObj;
  }
 
  async generateTokenUrl(
    tenantId: string,
    key: string,
    expiresInSeconds = 3600,
  ): Promise<string> {
    const obj = await this.objectModel
      .findOne({ tenantId, key, isDeleted: false })
      .exec();
    if (!obj) {
      throw new NotFoundException('Storage object not found');
    }
 
    const token = crypto.randomBytes(32).toString('hex');
    const expiresAt = new Date(Date.now() + expiresInSeconds * 1000);
 
    await this.tokenModel.create({
      token,
      key,
      expiresAt,
    });
 
    return `/api/v1/storage/download/${token}`;
  }
 
  async getFileByToken(
    token: string,
  ): Promise<{ buffer: Buffer; filename: string; mimeType: string }> {
    const accessToken = await this.tokenModel.findOne({ token }).exec();
    if (!accessToken) {
      throw new BadRequestException('Invalid or expired download token');
    }
 
    if (accessToken.expiresAt < new Date()) {
      throw new BadRequestException('Download token expired');
    }
 
    const obj = await this.objectModel
      .findOne({ key: accessToken.key, isDeleted: false })
      .exec();
    if (!obj) {
      throw new NotFoundException('File no longer exists');
    }
 
    const vol = await this.volumeModel
      .findOne({ volumeId: obj.volumeId })
      .exec();
    const buffer = await this.vpsProvider.read(
      obj.tenantId,
      obj.relativePath,
      vol?.rootPath,
    );
 
    return {
      buffer,
      filename: obj.filename,
      mimeType: obj.mimeType,
    };
  }
 
  async deleteFile(tenantId: string, key: string): Promise<boolean> {
    const obj = await this.objectModel.findOne({ tenantId, key }).exec();
    if (!obj) return false;
 
    const vol = await this.volumeModel
      .findOne({ volumeId: obj.volumeId })
      .exec();
    await this.vpsProvider.delete(tenantId, obj.relativePath, vol?.rootPath);
 
    obj.isDeleted = true;
    await obj.save();
 
    const allocation = await this.allocationModel.findOne({ tenantId }).exec();
    if (allocation) {
      allocation.usedBytes = Math.max(0, allocation.usedBytes - obj.sizeBytes);
      await allocation.save();
    }
 
    return true;
  }
 
  async getDownloadUrl(
    tenantId: string,
    key: string,
    expiresInSeconds = 3600,
  ): Promise<string> {
    return this.generateTokenUrl(tenantId, key, expiresInSeconds);
  }
 
  async downloadFile(tenantId: string, key: string): Promise<Buffer> {
    const obj = await this.objectModel
      .findOne({ tenantId, key, isDeleted: false })
      .exec();
    if (!obj) {
      throw new NotFoundException('Storage object not found');
    }
 
    const vol = await this.volumeModel
      .findOne({ volumeId: obj.volumeId })
      .exec();
    return this.vpsProvider.read(tenantId, obj.relativePath, vol?.rootPath);
  }
}