Add chunked uploads and raise storage rate to GHS 0.30/GB/month.
Deploy Ladill Transfer / deploy (push) Successful in 39s
Deploy Ladill Transfer / deploy (push) Successful in 39s
Large files upload in 5 MB chunks (hosting file manager pattern) for the transfer UI and Ladill Mail S2S API, with no app-level file size cap when TRANSFER_MAX_FILE_BYTES=0. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
+3
-2
@@ -37,8 +37,9 @@ BILLING_API_KEY_TRANSFER=
|
||||
IDENTITY_API_URL=https://ladill.com/api
|
||||
IDENTITY_API_KEY_TRANSFER=
|
||||
|
||||
TRANSFER_PRICE_PER_GB_MONTH=0.15
|
||||
TRANSFER_MAX_FILE_BYTES=524288000
|
||||
TRANSFER_PRICE_PER_GB_MONTH=0.30
|
||||
# 0 = no app-level file size cap (chunked uploads handle large files).
|
||||
TRANSFER_MAX_FILE_BYTES=0
|
||||
TRANSFER_MAX_FILES=20
|
||||
TRANSFER_DEFAULT_RETENTION_DAYS=30
|
||||
TRANSFER_MAIL_RETENTION_DAYS=30
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Standalone app for **secure file sharing** at `transfer.ladill.com` — upload files,
|
||||
get a QR code + share link, control retention, track downloads. Storage bills at
|
||||
**GHS 0.15/GB/month** from the platform UserWallet.
|
||||
**GHS 0.30/GB/month** from the platform UserWallet.
|
||||
|
||||
Public scans stay at `ladill.com/q/<code>`. The platform forwards transfer codes
|
||||
to this app (`TransferQrForwarder` on the monolith).
|
||||
|
||||
@@ -0,0 +1,156 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Api;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Services\Identity\MailboxUserResolver;
|
||||
use App\Services\Transfer\TransferService;
|
||||
use App\Services\Upload\ChunkedUploadService;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Str;
|
||||
use RuntimeException;
|
||||
|
||||
class ChunkedUploadController extends Controller
|
||||
{
|
||||
public function __construct(
|
||||
private ChunkedUploadService $uploads,
|
||||
private TransferService $transfers,
|
||||
private MailboxUserResolver $users,
|
||||
) {}
|
||||
|
||||
public function init(Request $request): JsonResponse
|
||||
{
|
||||
if ($request->attributes->get('service_caller') !== 'webmail') {
|
||||
return response()->json(['message' => 'Forbidden.'], 403);
|
||||
}
|
||||
|
||||
$validated = $request->validate([
|
||||
'mailbox' => ['required', 'email', 'max:255'],
|
||||
'filename' => ['required', 'string', 'max:255'],
|
||||
'filesize' => ['required', 'integer', 'min:1'],
|
||||
]);
|
||||
|
||||
$mailbox = strtolower(trim((string) $validated['mailbox']));
|
||||
|
||||
try {
|
||||
$this->users->resolve($mailbox);
|
||||
} catch (RuntimeException $e) {
|
||||
return response()->json(['message' => $e->getMessage()], 422);
|
||||
}
|
||||
|
||||
$uploadId = $this->uploads->init($this->ownerKey($mailbox), [
|
||||
'filename' => $validated['filename'],
|
||||
'filesize' => (int) $validated['filesize'],
|
||||
'mailbox' => $mailbox,
|
||||
]);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'upload_id' => $uploadId,
|
||||
]);
|
||||
}
|
||||
|
||||
public function chunk(Request $request): JsonResponse
|
||||
{
|
||||
if ($request->attributes->get('service_caller') !== 'webmail') {
|
||||
return response()->json(['message' => 'Forbidden.'], 403);
|
||||
}
|
||||
|
||||
$validated = $request->validate([
|
||||
'mailbox' => ['required', 'email', 'max:255'],
|
||||
'upload_id' => ['required', 'string', 'uuid'],
|
||||
'chunk_index' => ['required', 'integer', 'min:0'],
|
||||
'chunk_size' => ['required', 'integer', 'min:1'],
|
||||
'chunk' => ['required', 'file', 'max:10240'],
|
||||
]);
|
||||
|
||||
$mailbox = strtolower(trim((string) $validated['mailbox']));
|
||||
$chunk = $request->file('chunk');
|
||||
if ($chunk === null) {
|
||||
return response()->json(['success' => false, 'error' => 'Chunk missing.'], 422);
|
||||
}
|
||||
|
||||
try {
|
||||
$received = $this->uploads->receiveChunk(
|
||||
$validated['upload_id'],
|
||||
$this->ownerKey($mailbox),
|
||||
(int) $validated['chunk_index'],
|
||||
$chunk,
|
||||
(int) $validated['chunk_size'],
|
||||
);
|
||||
} catch (RuntimeException $e) {
|
||||
return response()->json(['success' => false, 'error' => $e->getMessage()], 400);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'chunk_index' => (int) $validated['chunk_index'],
|
||||
'chunks_received' => $received,
|
||||
]);
|
||||
}
|
||||
|
||||
public function finalize(Request $request): JsonResponse
|
||||
{
|
||||
if ($request->attributes->get('service_caller') !== 'webmail') {
|
||||
return response()->json(['message' => 'Forbidden.'], 403);
|
||||
}
|
||||
|
||||
$validated = $request->validate([
|
||||
'mailbox' => ['required', 'email', 'max:255'],
|
||||
'upload_id' => ['required', 'string', 'uuid'],
|
||||
'total_chunks' => ['required', 'integer', 'min:1'],
|
||||
'title' => ['nullable', 'string', 'max:120'],
|
||||
'retention_days' => ['nullable', 'integer', 'min:1', 'max:365'],
|
||||
]);
|
||||
|
||||
$mailbox = strtolower(trim((string) $validated['mailbox']));
|
||||
$ownerKey = $this->ownerKey($mailbox);
|
||||
|
||||
try {
|
||||
$user = $this->users->resolve($mailbox);
|
||||
$assembled = $this->uploads->finalize(
|
||||
$validated['upload_id'],
|
||||
$ownerKey,
|
||||
(int) $validated['total_chunks'],
|
||||
);
|
||||
$uploadedFile = $this->uploads->toUploadedFile($validated['upload_id'], $ownerKey);
|
||||
|
||||
$title = trim((string) ($validated['title'] ?? ''));
|
||||
if ($title === '') {
|
||||
$title = Str::limit('Email attachment: '.$assembled['filename'], 120, '');
|
||||
}
|
||||
|
||||
$retentionDays = (int) ($validated['retention_days'] ?? config('transfer.mail_retention_days', config('transfer.default_retention_days', 30)));
|
||||
|
||||
$transfer = $this->transfers->create($user, [
|
||||
'title' => $title,
|
||||
'retention_days' => $retentionDays,
|
||||
], [$uploadedFile]);
|
||||
} catch (RuntimeException $e) {
|
||||
return response()->json(['message' => $e->getMessage()], 422);
|
||||
} finally {
|
||||
$this->uploads->cleanup($validated['upload_id']);
|
||||
}
|
||||
|
||||
$transfer->load(['files', 'qrCode']);
|
||||
|
||||
return response()->json([
|
||||
'data' => [
|
||||
'id' => $transfer->id,
|
||||
'title' => $transfer->title,
|
||||
'public_url' => $transfer->qrCode?->publicUrl(),
|
||||
'expires_at' => $transfer->expires_at?->toIso8601String(),
|
||||
'files' => $transfer->files->map(fn ($file) => [
|
||||
'name' => $file->original_name,
|
||||
'size_bytes' => $file->size_bytes,
|
||||
])->values(),
|
||||
],
|
||||
], 201);
|
||||
}
|
||||
|
||||
private function ownerKey(string $mailbox): string
|
||||
{
|
||||
return 'webmail:'.strtolower(trim($mailbox));
|
||||
}
|
||||
}
|
||||
@@ -23,8 +23,12 @@ class TransferController extends Controller
|
||||
return response()->json(['message' => 'Forbidden.'], 403);
|
||||
}
|
||||
|
||||
$maxKb = (int) ceil(((int) config('transfer.max_file_bytes', 524288000)) / 1024);
|
||||
$maxBytes = (int) config('transfer.max_file_bytes', 0);
|
||||
$maxFiles = (int) config('transfer.max_files_per_transfer', 20);
|
||||
$fileRules = ['required', 'file'];
|
||||
if ($maxBytes > 0) {
|
||||
$fileRules[] = 'max:'.(int) ceil($maxBytes / 1024);
|
||||
}
|
||||
|
||||
$data = $request->validate([
|
||||
'mailbox' => ['required', 'email', 'max:255'],
|
||||
@@ -32,7 +36,7 @@ class TransferController extends Controller
|
||||
'message' => ['nullable', 'string', 'max:2000'],
|
||||
'retention_days' => ['nullable', 'integer', 'min:1', 'max:365'],
|
||||
'files' => ['required', 'array', 'min:1', 'max:'.$maxFiles],
|
||||
'files.*' => ['required', 'file', 'max:'.$maxKb],
|
||||
'files.*' => $fileRules,
|
||||
]);
|
||||
|
||||
try {
|
||||
|
||||
@@ -61,7 +61,7 @@ class AccountController extends Controller
|
||||
|
||||
$storageBytes = (int) $activeTransfers->sum('storage_bytes');
|
||||
$storageGb = round($storageBytes / (1024 * 1024 * 1024), 2);
|
||||
$pricePerGb = (float) config('transfer.price_per_gb_month', 0.15);
|
||||
$pricePerGb = (float) config('transfer.price_per_gb_month', 0.30);
|
||||
$monthlyTotalGhs = round($activeTransfers->sum(fn (Transfer $transfer) => $transfer->monthlyCostGhs()), 2);
|
||||
|
||||
return view('qr.account.billing', [
|
||||
|
||||
@@ -70,7 +70,7 @@ class AfiaController extends Controller
|
||||
->whereNotNull('expires_at')
|
||||
->whereBetween('expires_at', [now(), now()->addDays(7)])
|
||||
->count(),
|
||||
'storage_price_per_gb_month_ghs' => number_format((float) config('transfer.price_per_gb_month', 0.15), 2),
|
||||
'storage_price_per_gb_month_ghs' => number_format((float) config('transfer.price_per_gb_month', 0.30), 2),
|
||||
];
|
||||
|
||||
if ($account->public_id) {
|
||||
|
||||
@@ -0,0 +1,103 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Transfer;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Services\Upload\ChunkedUploadService;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Http\Request;
|
||||
use RuntimeException;
|
||||
|
||||
class ChunkedUploadController extends Controller
|
||||
{
|
||||
public function __construct(
|
||||
private ChunkedUploadService $uploads,
|
||||
) {}
|
||||
|
||||
public function init(Request $request): JsonResponse
|
||||
{
|
||||
$account = ladill_account();
|
||||
|
||||
$validated = $request->validate([
|
||||
'filename' => 'required|string|max:255',
|
||||
'filesize' => 'required|integer|min:1',
|
||||
]);
|
||||
|
||||
$uploadId = $this->uploads->init($this->ownerKey($account->id), [
|
||||
'filename' => $validated['filename'],
|
||||
'filesize' => (int) $validated['filesize'],
|
||||
]);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'upload_id' => $uploadId,
|
||||
]);
|
||||
}
|
||||
|
||||
public function chunk(Request $request): JsonResponse
|
||||
{
|
||||
$account = ladill_account();
|
||||
$ownerKey = $this->ownerKey($account->id);
|
||||
|
||||
$validated = $request->validate([
|
||||
'upload_id' => 'required|string|uuid',
|
||||
'chunk_index' => 'required|integer|min:0',
|
||||
'chunk_size' => 'required|integer|min:1',
|
||||
'chunk' => 'required|file|max:10240',
|
||||
]);
|
||||
|
||||
$chunk = $request->file('chunk');
|
||||
if ($chunk === null) {
|
||||
return response()->json(['success' => false, 'error' => 'Chunk missing.'], 422);
|
||||
}
|
||||
|
||||
try {
|
||||
$received = $this->uploads->receiveChunk(
|
||||
$validated['upload_id'],
|
||||
$ownerKey,
|
||||
(int) $validated['chunk_index'],
|
||||
$chunk,
|
||||
(int) $validated['chunk_size'],
|
||||
);
|
||||
} catch (RuntimeException $e) {
|
||||
return response()->json(['success' => false, 'error' => $e->getMessage()], 400);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'chunk_index' => (int) $validated['chunk_index'],
|
||||
'chunks_received' => $received,
|
||||
]);
|
||||
}
|
||||
|
||||
public function finalize(Request $request): JsonResponse
|
||||
{
|
||||
$account = ladill_account();
|
||||
$ownerKey = $this->ownerKey($account->id);
|
||||
|
||||
$validated = $request->validate([
|
||||
'upload_id' => 'required|string|uuid',
|
||||
'total_chunks' => 'required|integer|min:1',
|
||||
]);
|
||||
|
||||
try {
|
||||
$this->uploads->finalize(
|
||||
$validated['upload_id'],
|
||||
$ownerKey,
|
||||
(int) $validated['total_chunks'],
|
||||
);
|
||||
} catch (RuntimeException $e) {
|
||||
return response()->json(['success' => false, 'error' => $e->getMessage()], 400);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'upload_id' => $validated['upload_id'],
|
||||
]);
|
||||
}
|
||||
|
||||
private function ownerKey(int $userId): string
|
||||
{
|
||||
return 'user:'.$userId;
|
||||
}
|
||||
}
|
||||
@@ -31,7 +31,7 @@ class FilesController extends Controller
|
||||
'files' => $files,
|
||||
'storageBytes' => (int) $storageBytes,
|
||||
'storageGb' => round($storageBytes / (1024 * 1024 * 1024), 2),
|
||||
'pricePerGb' => (float) config('transfer.price_per_gb_month', 0.15),
|
||||
'pricePerGb' => (float) config('transfer.price_per_gb_month', 0.30),
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ class OverviewController extends Controller
|
||||
}
|
||||
|
||||
$storageGb = round($storageBytes / (1024 * 1024 * 1024), 2);
|
||||
$monthlyEstimateGhs = round($storageGb * (float) config('transfer.price_per_gb_month', 0.15), 2);
|
||||
$monthlyEstimateGhs = round($storageGb * (float) config('transfer.price_per_gb_month', 0.30), 2);
|
||||
|
||||
return view('transfer.dashboard', [
|
||||
'activeCount' => $activeCount,
|
||||
|
||||
@@ -7,6 +7,7 @@ use App\Models\Transfer;
|
||||
use App\Services\Qr\QrImageGeneratorService;
|
||||
use App\Services\Qr\QrPdfExporter;
|
||||
use App\Services\Transfer\TransferService;
|
||||
use App\Services\Upload\ChunkedUploadService;
|
||||
use Illuminate\Http\RedirectResponse;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Str;
|
||||
@@ -19,6 +20,7 @@ class TransferController extends Controller
|
||||
{
|
||||
public function __construct(
|
||||
private TransferService $transfers,
|
||||
private ChunkedUploadService $chunkedUploads,
|
||||
private QrImageGeneratorService $imageGenerator,
|
||||
private QrPdfExporter $pdfExporter,
|
||||
) {}
|
||||
@@ -42,7 +44,7 @@ class TransferController extends Controller
|
||||
return view('transfer.transfers.create', [
|
||||
'defaultRetentionDays' => (int) config('transfer.default_retention_days', 30),
|
||||
'maxFiles' => (int) config('transfer.max_files_per_transfer', 20),
|
||||
'pricePerGb' => (float) config('transfer.price_per_gb_month', 0.15),
|
||||
'pricePerGb' => (float) config('transfer.price_per_gb_month', 0.30),
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -50,19 +52,47 @@ class TransferController extends Controller
|
||||
{
|
||||
$account = ladill_account();
|
||||
|
||||
$maxBytes = (int) config('transfer.max_file_bytes', 0);
|
||||
$fileRules = ['nullable', 'file'];
|
||||
if ($maxBytes > 0) {
|
||||
$fileRules[] = 'max:'.(int) ceil($maxBytes / 1024);
|
||||
}
|
||||
|
||||
$data = $request->validate([
|
||||
'title' => 'required|string|max:120',
|
||||
'message' => 'nullable|string|max:2000',
|
||||
'password' => 'nullable|string|min:4|max:64',
|
||||
'retention_days' => 'nullable|integer|min:1|max:365',
|
||||
'files' => 'required|array|min:1',
|
||||
'files.*' => 'required|file|max:'.((int) config('transfer.max_file_bytes', 524288000) / 1024),
|
||||
'files' => 'nullable|array',
|
||||
'files.*' => $fileRules,
|
||||
'upload_ids' => 'nullable|array',
|
||||
'upload_ids.*' => 'required|string|uuid',
|
||||
]);
|
||||
|
||||
$ownerKey = 'user:'.$account->id;
|
||||
$files = array_values($request->file('files', []) ?? []);
|
||||
$uploadIds = array_values($data['upload_ids'] ?? []);
|
||||
|
||||
if ($files === [] && $uploadIds === []) {
|
||||
return back()->withInput()->with('error', 'Add at least one file to share.');
|
||||
}
|
||||
|
||||
foreach ($uploadIds as $uploadId) {
|
||||
try {
|
||||
$files[] = $this->chunkedUploads->toUploadedFile($uploadId, $ownerKey);
|
||||
} catch (RuntimeException $e) {
|
||||
return back()->withInput()->with('error', $e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
$transfer = $this->transfers->create($account, $data, $request->file('files', []));
|
||||
$transfer = $this->transfers->create($account, $data, $files);
|
||||
} catch (RuntimeException $e) {
|
||||
return back()->withInput()->with('error', $e->getMessage());
|
||||
} finally {
|
||||
foreach ($uploadIds as $uploadId) {
|
||||
$this->chunkedUploads->cleanup($uploadId);
|
||||
}
|
||||
}
|
||||
|
||||
return redirect()
|
||||
|
||||
@@ -79,6 +79,6 @@ class Transfer extends Model
|
||||
|
||||
public function monthlyCostGhs(): float
|
||||
{
|
||||
return round($this->storageGb() * (float) config('transfer.price_per_gb_month', 0.15), 2);
|
||||
return round($this->storageGb() * (float) config('transfer.price_per_gb_month', 0.30), 2);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ class AfiaService
|
||||
|
||||
private function transferSystemPrompt(string $ctx): string
|
||||
{
|
||||
$pricePerGb = number_format((float) config('transfer.price_per_gb_month', 0.15), 2);
|
||||
$pricePerGb = number_format((float) config('transfer.price_per_gb_month', 0.30), 2);
|
||||
|
||||
return <<<PROMPT
|
||||
You are Afia, the assistant inside Ladill Transfer (transfer.ladill.com).
|
||||
|
||||
@@ -38,7 +38,7 @@ class TransferService
|
||||
throw new RuntimeException("You can upload up to {$maxFiles} files per transfer.");
|
||||
}
|
||||
|
||||
$maxBytes = (int) config('transfer.max_file_bytes', 524288000);
|
||||
$maxBytes = (int) config('transfer.max_file_bytes', 0);
|
||||
$retentionDays = (int) ($data['retention_days'] ?? config('transfer.default_retention_days', 30));
|
||||
$retentionDays = max(1, min(365, $retentionDays));
|
||||
|
||||
@@ -64,7 +64,7 @@ class TransferService
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($file->getSize() > $maxBytes) {
|
||||
if ($maxBytes > 0 && $file->getSize() > $maxBytes) {
|
||||
throw new RuntimeException($file->getClientOriginalName().' exceeds the maximum file size.');
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,192 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services\Upload;
|
||||
|
||||
use Illuminate\Http\UploadedFile;
|
||||
use Illuminate\Support\Str;
|
||||
use RuntimeException;
|
||||
|
||||
/** Bit-sized upload sessions (init → chunks → finalize), matching hosting file manager. */
|
||||
class ChunkedUploadService
|
||||
{
|
||||
public function baseDir(): string
|
||||
{
|
||||
$dir = (string) config('transfer.chunk_upload.path', storage_path('app/chunked_uploads'));
|
||||
|
||||
if (! is_dir($dir)) {
|
||||
mkdir($dir, 0755, true);
|
||||
}
|
||||
|
||||
return $dir;
|
||||
}
|
||||
|
||||
/** @param array<string, mixed> $metadata */
|
||||
public function init(string $ownerKey, array $metadata): string
|
||||
{
|
||||
$uploadId = (string) Str::uuid();
|
||||
$tempDir = $this->sessionDir($uploadId);
|
||||
|
||||
if (! is_dir($tempDir)) {
|
||||
mkdir($tempDir, 0755, true);
|
||||
}
|
||||
|
||||
$payload = array_merge($metadata, [
|
||||
'owner_key' => $ownerKey,
|
||||
'chunks_received' => [],
|
||||
'created_at' => now()->toIso8601String(),
|
||||
]);
|
||||
|
||||
$this->writeMetadata($uploadId, $payload);
|
||||
|
||||
return $uploadId;
|
||||
}
|
||||
|
||||
public function receiveChunk(string $uploadId, string $ownerKey, int $chunkIndex, UploadedFile $chunk, int $expectedSize): int
|
||||
{
|
||||
$metadata = $this->metadata($uploadId, $ownerKey);
|
||||
$tempDir = $this->sessionDir($uploadId);
|
||||
|
||||
$actualSize = (int) $chunk->getSize();
|
||||
if ($expectedSize > 0 && $actualSize !== $expectedSize) {
|
||||
throw new RuntimeException("Chunk size mismatch: expected {$expectedSize}, got {$actualSize}.");
|
||||
}
|
||||
|
||||
$chunkPath = "{$tempDir}/chunk_{$chunkIndex}";
|
||||
$chunk->move($tempDir, "chunk_{$chunkIndex}");
|
||||
|
||||
if (! file_exists($chunkPath) || filesize($chunkPath) !== $actualSize) {
|
||||
throw new RuntimeException('Chunk save failed.');
|
||||
}
|
||||
|
||||
$metadata['chunks_received'][] = $chunkIndex;
|
||||
$metadata['chunks_received'] = array_values(array_unique($metadata['chunks_received']));
|
||||
sort($metadata['chunks_received']);
|
||||
$this->writeMetadata($uploadId, $metadata);
|
||||
|
||||
return count($metadata['chunks_received']);
|
||||
}
|
||||
|
||||
/** @return array{path: string, filename: string, size: int, metadata: array<string, mixed>} */
|
||||
public function finalize(string $uploadId, string $ownerKey, int $totalChunks): array
|
||||
{
|
||||
$metadata = $this->metadata($uploadId, $ownerKey);
|
||||
$tempDir = $this->sessionDir($uploadId);
|
||||
|
||||
if (count($metadata['chunks_received']) !== $totalChunks) {
|
||||
throw new RuntimeException(
|
||||
'Missing chunks. Expected '.$totalChunks.', received '.count($metadata['chunks_received']).'.',
|
||||
);
|
||||
}
|
||||
|
||||
$finalPath = "{$tempDir}/final_".Str::random(8);
|
||||
$finalFile = fopen($finalPath, 'wb');
|
||||
if ($finalFile === false) {
|
||||
throw new RuntimeException('Could not create assembled file.');
|
||||
}
|
||||
|
||||
for ($i = 0; $i < $totalChunks; $i++) {
|
||||
$chunkPath = "{$tempDir}/chunk_{$i}";
|
||||
if (! file_exists($chunkPath)) {
|
||||
fclose($finalFile);
|
||||
throw new RuntimeException("Chunk {$i} is missing.");
|
||||
}
|
||||
|
||||
$chunkHandle = fopen($chunkPath, 'rb');
|
||||
if ($chunkHandle === false) {
|
||||
fclose($finalFile);
|
||||
throw new RuntimeException("Could not read chunk {$i}.");
|
||||
}
|
||||
|
||||
while (! feof($chunkHandle)) {
|
||||
$buffer = fread($chunkHandle, 8192);
|
||||
if ($buffer === false) {
|
||||
break;
|
||||
}
|
||||
fwrite($finalFile, $buffer);
|
||||
}
|
||||
fclose($chunkHandle);
|
||||
}
|
||||
fclose($finalFile);
|
||||
|
||||
$combinedSize = (int) filesize($finalPath);
|
||||
$expectedSize = (int) ($metadata['filesize'] ?? 0);
|
||||
if ($expectedSize > 0 && abs($combinedSize - $expectedSize) > 1024) {
|
||||
@unlink($finalPath);
|
||||
throw new RuntimeException("File size mismatch. Expected {$expectedSize} bytes, got {$combinedSize} bytes.");
|
||||
}
|
||||
|
||||
$metadata['assembled_path'] = $finalPath;
|
||||
$metadata['assembled_size'] = $combinedSize;
|
||||
$this->writeMetadata($uploadId, $metadata);
|
||||
|
||||
return [
|
||||
'path' => $finalPath,
|
||||
'filename' => basename((string) ($metadata['filename'] ?? 'upload.bin')),
|
||||
'size' => $combinedSize,
|
||||
'metadata' => $metadata,
|
||||
];
|
||||
}
|
||||
|
||||
public function toUploadedFile(string $uploadId, string $ownerKey): UploadedFile
|
||||
{
|
||||
$metadata = $this->metadata($uploadId, $ownerKey);
|
||||
$path = (string) ($metadata['assembled_path'] ?? '');
|
||||
|
||||
if ($path === '' || ! is_file($path)) {
|
||||
throw new RuntimeException('Assembled upload is not ready.');
|
||||
}
|
||||
|
||||
return new UploadedFile(
|
||||
$path,
|
||||
basename((string) ($metadata['filename'] ?? 'upload.bin')),
|
||||
null,
|
||||
null,
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
public function cleanup(string $uploadId): void
|
||||
{
|
||||
$tempDir = $this->sessionDir($uploadId);
|
||||
if (! is_dir($tempDir)) {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (glob("{$tempDir}/*") ?: [] as $file) {
|
||||
@unlink($file);
|
||||
}
|
||||
@rmdir($tempDir);
|
||||
}
|
||||
|
||||
/** @return array<string, mixed> */
|
||||
public function metadata(string $uploadId, string $ownerKey): array
|
||||
{
|
||||
$path = $this->metadataPath($uploadId);
|
||||
if (! file_exists($path)) {
|
||||
throw new RuntimeException('Upload session not found or expired.');
|
||||
}
|
||||
|
||||
$metadata = json_decode((string) file_get_contents($path), true);
|
||||
if (! is_array($metadata) || ($metadata['owner_key'] ?? '') !== $ownerKey) {
|
||||
throw new RuntimeException('Upload session not found or unauthorized.');
|
||||
}
|
||||
|
||||
return $metadata;
|
||||
}
|
||||
|
||||
private function sessionDir(string $uploadId): string
|
||||
{
|
||||
return $this->baseDir().'/'.$uploadId;
|
||||
}
|
||||
|
||||
private function metadataPath(string $uploadId): string
|
||||
{
|
||||
return $this->sessionDir($uploadId).'/metadata.json';
|
||||
}
|
||||
|
||||
/** @param array<string, mixed> $metadata */
|
||||
private function writeMetadata(string $uploadId, array $metadata): void
|
||||
{
|
||||
file_put_contents($this->metadataPath($uploadId), json_encode($metadata));
|
||||
}
|
||||
}
|
||||
+9
-3
@@ -9,10 +9,16 @@ return [
|
||||
]),
|
||||
|
||||
// GHS per GB per month of retention (see qr-suite-decomposition.md §7.3).
|
||||
'price_per_gb_month' => (float) env('TRANSFER_PRICE_PER_GB_MONTH', 0.15),
|
||||
'price_per_gb_month' => (float) env('TRANSFER_PRICE_PER_GB_MONTH', 0.30),
|
||||
|
||||
// Max single-file upload size (bytes). Default 500 MB.
|
||||
'max_file_bytes' => (int) env('TRANSFER_MAX_FILE_BYTES', 524288000),
|
||||
// Max single-file upload size (bytes). 0 = no limit (chunked uploads handle large files).
|
||||
'max_file_bytes' => (int) env('TRANSFER_MAX_FILE_BYTES', 0),
|
||||
|
||||
// Bit-sized upload sessions (init → chunk → finalize), same pattern as hosting file manager.
|
||||
'chunk_upload' => [
|
||||
'path' => env('TRANSFER_CHUNK_UPLOAD_PATH', storage_path('app/chunked_uploads')),
|
||||
'chunk_size_bytes' => (int) env('TRANSFER_CHUNK_SIZE_BYTES', 5 * 1024 * 1024),
|
||||
],
|
||||
|
||||
// Max files per transfer.
|
||||
'max_files_per_transfer' => (int) env('TRANSFER_MAX_FILES', 20),
|
||||
|
||||
@@ -37,8 +37,8 @@ BILLING_API_KEY_TRANSFER=
|
||||
IDENTITY_API_URL=https://ladill.com/api
|
||||
IDENTITY_API_KEY_TRANSFER=
|
||||
|
||||
TRANSFER_PRICE_PER_GB_MONTH=0.15
|
||||
TRANSFER_MAX_FILE_BYTES=524288000
|
||||
TRANSFER_PRICE_PER_GB_MONTH=0.30
|
||||
TRANSFER_MAX_FILE_BYTES=0
|
||||
TRANSFER_MAX_FILES=20
|
||||
TRANSFER_DEFAULT_RETENTION_DAYS=30
|
||||
TRANSFER_MAIL_RETENTION_DAYS=30
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import './bootstrap';
|
||||
|
||||
import { registerLadillConfirmStore, registerLadillModalHelpers } from './ladill-modals';
|
||||
import { shouldUseChunkedUpload, uploadFileChunked } from './chunked-upload';
|
||||
|
||||
registerLadillModalHelpers();
|
||||
|
||||
@@ -300,6 +301,90 @@ Alpine.data('topbarSearch', (config = {}) => ({
|
||||
},
|
||||
}));
|
||||
|
||||
Alpine.data('transferCreateForm', (config = {}) => ({
|
||||
selectedFiles: [],
|
||||
uploading: false,
|
||||
submitting: false,
|
||||
uploadProgress: 0,
|
||||
uploadLabel: '',
|
||||
prepared: false,
|
||||
|
||||
onFilesChange(event) {
|
||||
this.selectedFiles = Array.from(event.target.files || []);
|
||||
this.prepared = false;
|
||||
},
|
||||
|
||||
async submit(event) {
|
||||
if (this.prepared) {
|
||||
return;
|
||||
}
|
||||
|
||||
event.preventDefault();
|
||||
const form = event.target;
|
||||
const fileInput = form.querySelector('#files');
|
||||
const files = this.selectedFiles.length
|
||||
? this.selectedFiles
|
||||
: Array.from(fileInput?.files || []);
|
||||
|
||||
if (!files.length) {
|
||||
window.alert('Add at least one file to share.');
|
||||
return;
|
||||
}
|
||||
|
||||
this.uploading = true;
|
||||
this.uploadProgress = 0;
|
||||
const smallFiles = [];
|
||||
|
||||
try {
|
||||
form.querySelectorAll('input[name="upload_ids[]"]').forEach((node) => node.remove());
|
||||
|
||||
for (let index = 0; index < files.length; index++) {
|
||||
const file = files[index];
|
||||
this.uploadLabel = `Uploading ${file.name} (${index + 1}/${files.length})…`;
|
||||
|
||||
if (shouldUseChunkedUpload(file.size)) {
|
||||
const result = await uploadFileChunked(file, {
|
||||
initUrl: config.initUrl,
|
||||
chunkUrl: config.chunkUrl,
|
||||
finalizeUrl: config.finalizeUrl,
|
||||
csrfToken: config.csrfToken,
|
||||
onProgress: (percent) => {
|
||||
this.uploadProgress = percent;
|
||||
},
|
||||
});
|
||||
|
||||
const hidden = document.createElement('input');
|
||||
hidden.type = 'hidden';
|
||||
hidden.name = 'upload_ids[]';
|
||||
hidden.value = result.uploadId;
|
||||
form.appendChild(hidden);
|
||||
} else {
|
||||
smallFiles.push(file);
|
||||
}
|
||||
}
|
||||
|
||||
if (fileInput && smallFiles.length) {
|
||||
const dataTransfer = new DataTransfer();
|
||||
smallFiles.forEach((file) => dataTransfer.items.add(file));
|
||||
fileInput.files = dataTransfer.files;
|
||||
} else if (fileInput) {
|
||||
fileInput.removeAttribute('required');
|
||||
fileInput.value = '';
|
||||
}
|
||||
|
||||
this.uploading = false;
|
||||
this.submitting = true;
|
||||
this.prepared = true;
|
||||
form.submit();
|
||||
} catch (error) {
|
||||
this.uploading = false;
|
||||
this.submitting = false;
|
||||
this.prepared = false;
|
||||
window.alert(error?.message || 'Upload failed. Please try again.');
|
||||
}
|
||||
},
|
||||
}));
|
||||
|
||||
window.Alpine = Alpine;
|
||||
registerLadillConfirmStore(Alpine);
|
||||
|
||||
|
||||
@@ -0,0 +1,121 @@
|
||||
const DEFAULT_CHUNK_SIZE = 5 * 1024 * 1024;
|
||||
const CHUNKED_THRESHOLD = 5 * 1024 * 1024;
|
||||
|
||||
/**
|
||||
* @param {File} file
|
||||
* @param {{
|
||||
* chunkSize?: number,
|
||||
* initUrl: string,
|
||||
* chunkUrl: string,
|
||||
* finalizeUrl: string,
|
||||
* csrfToken?: string,
|
||||
* extraInit?: Record<string, unknown>,
|
||||
* extraChunk?: Record<string, unknown>,
|
||||
* extraFinalize?: Record<string, unknown>,
|
||||
* onProgress?: (percent: number) => void,
|
||||
* }} options
|
||||
*/
|
||||
export async function uploadFileChunked(file, options) {
|
||||
const chunkSize = options.chunkSize || DEFAULT_CHUNK_SIZE;
|
||||
const totalChunks = Math.ceil(file.size / chunkSize);
|
||||
const maxRetries = 3;
|
||||
const headers = { Accept: 'application/json' };
|
||||
if (options.csrfToken) {
|
||||
headers['X-CSRF-TOKEN'] = options.csrfToken;
|
||||
}
|
||||
|
||||
const initRes = await fetch(options.initUrl, {
|
||||
method: 'POST',
|
||||
headers: { ...headers, 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({
|
||||
filename: file.name,
|
||||
filesize: file.size,
|
||||
...(options.extraInit || {}),
|
||||
}),
|
||||
});
|
||||
const initData = await initRes.json();
|
||||
if (!initData.success) {
|
||||
throw new Error(initData.error || initData.message || 'Failed to initialize upload.');
|
||||
}
|
||||
|
||||
const uploadId = initData.upload_id;
|
||||
|
||||
for (let i = 0; i < totalChunks; i++) {
|
||||
const start = i * chunkSize;
|
||||
const end = Math.min(start + chunkSize, file.size);
|
||||
const chunk = file.slice(start, end);
|
||||
const expectedSize = end - start;
|
||||
|
||||
let success = false;
|
||||
let lastError = null;
|
||||
|
||||
for (let attempt = 0; attempt < maxRetries && !success; attempt++) {
|
||||
try {
|
||||
const formData = new FormData();
|
||||
formData.append('upload_id', uploadId);
|
||||
formData.append('chunk_index', String(i));
|
||||
formData.append('chunk_size', String(expectedSize));
|
||||
formData.append('chunk', chunk, `chunk_${i}`);
|
||||
if (options.extraChunk) {
|
||||
Object.entries(options.extraChunk).forEach(([key, value]) => {
|
||||
formData.append(key, String(value));
|
||||
});
|
||||
}
|
||||
|
||||
const chunkRes = await fetch(options.chunkUrl, {
|
||||
method: 'POST',
|
||||
headers,
|
||||
body: formData,
|
||||
});
|
||||
|
||||
if (!chunkRes.ok) {
|
||||
throw new Error(`HTTP ${chunkRes.status}`);
|
||||
}
|
||||
|
||||
const chunkData = await chunkRes.json();
|
||||
if (!chunkData.success) {
|
||||
throw new Error(chunkData.error || chunkData.message || 'Chunk upload failed.');
|
||||
}
|
||||
|
||||
success = true;
|
||||
} catch (error) {
|
||||
lastError = error;
|
||||
if (attempt < maxRetries - 1) {
|
||||
await new Promise((resolve) => setTimeout(resolve, 1000 * (attempt + 1)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!success) {
|
||||
throw new Error(
|
||||
`Failed to upload chunk ${i + 1}/${totalChunks}: ${lastError?.message || 'unknown error'}`,
|
||||
);
|
||||
}
|
||||
|
||||
if (typeof options.onProgress === 'function') {
|
||||
options.onProgress(Math.round(((i + 1) / totalChunks) * 100));
|
||||
}
|
||||
}
|
||||
|
||||
const finalRes = await fetch(options.finalizeUrl, {
|
||||
method: 'POST',
|
||||
headers: { ...headers, 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({
|
||||
upload_id: uploadId,
|
||||
total_chunks: totalChunks,
|
||||
...(options.extraFinalize || {}),
|
||||
}),
|
||||
});
|
||||
const finalData = await finalRes.json();
|
||||
if (!finalData.success && !finalData.data?.public_url) {
|
||||
throw new Error(finalData.error || finalData.message || 'Failed to finalize upload.');
|
||||
}
|
||||
|
||||
return { uploadId, response: finalData };
|
||||
}
|
||||
|
||||
export function shouldUseChunkedUpload(fileSize, threshold = CHUNKED_THRESHOLD) {
|
||||
return fileSize > threshold;
|
||||
}
|
||||
|
||||
export { CHUNKED_THRESHOLD, DEFAULT_CHUNK_SIZE };
|
||||
@@ -58,7 +58,7 @@
|
||||
<div class="rounded-2xl border border-indigo-100 bg-indigo-50/60 p-6">
|
||||
<p class="text-xs font-medium uppercase tracking-wide text-indigo-600">Wallet balance</p>
|
||||
<p class="mt-1.5 text-2xl font-semibold text-slate-900">{{ $fmt($balanceMinor) }}</p>
|
||||
<p class="mt-2 text-sm text-slate-600">Storage is billed at GHS {{ number_format((float) config('transfer.price_per_gb_month', 0.15), 2) }} per GB per month from your Ladill wallet.</p>
|
||||
<p class="mt-2 text-sm text-slate-600">Storage is billed at GHS {{ number_format((float) config('transfer.price_per_gb_month', 0.30), 2) }} per GB per month from your Ladill wallet.</p>
|
||||
<div class="mt-4 space-y-3">
|
||||
<a href="{{ route('transfer.transfers.create') }}" class="flex items-center justify-between rounded-xl border border-white bg-white px-4 py-3 text-sm hover:bg-indigo-50/50">
|
||||
<span class="font-medium text-slate-700">New transfer</span>
|
||||
|
||||
@@ -11,7 +11,15 @@
|
||||
<div class="rounded-xl border border-red-200 bg-red-50 px-4 py-3 text-sm text-red-700">{{ session('error') }}</div>
|
||||
@endif
|
||||
|
||||
<form method="post" action="{{ route('transfer.transfers.store') }}" enctype="multipart/form-data" class="space-y-5 rounded-2xl border border-slate-200 bg-white p-6">
|
||||
<form method="post" action="{{ route('transfer.transfers.store') }}" enctype="multipart/form-data"
|
||||
x-data="transferCreateForm(@js([
|
||||
'initUrl' => route('transfer.transfers.upload.init'),
|
||||
'chunkUrl' => route('transfer.transfers.upload.chunk'),
|
||||
'finalizeUrl' => route('transfer.transfers.upload.finalize'),
|
||||
'csrfToken' => csrf_token(),
|
||||
]))"
|
||||
@submit.prevent="submit"
|
||||
class="space-y-5 rounded-2xl border border-slate-200 bg-white p-6">
|
||||
@csrf
|
||||
<div>
|
||||
<label for="title" class="block text-sm font-medium text-slate-700">Title</label>
|
||||
@@ -28,9 +36,17 @@
|
||||
|
||||
<div>
|
||||
<label for="files" class="block text-sm font-medium text-slate-700">Files</label>
|
||||
<input type="file" name="files[]" id="files" multiple required
|
||||
<input type="file" id="files" multiple required @change="onFilesChange"
|
||||
class="mt-1 block w-full text-sm text-slate-600 file:mr-4 file:rounded-lg file:border-0 file:bg-indigo-50 file:px-4 file:py-2 file:text-sm file:font-semibold file:text-indigo-700 hover:file:bg-indigo-100">
|
||||
<p class="mt-1 text-xs text-slate-500">Up to {{ $maxFiles }} files. Max 500 MB each.</p>
|
||||
<p class="mt-1 text-xs text-slate-500">Up to {{ $maxFiles }} files. Large files upload in small chunks — no practical size limit.</p>
|
||||
<template x-if="uploading">
|
||||
<div class="mt-2">
|
||||
<div class="h-2 w-full overflow-hidden rounded-full bg-slate-100">
|
||||
<div class="h-full rounded-full bg-indigo-600 transition-all" :style="`width: ${uploadProgress}%`"></div>
|
||||
</div>
|
||||
<p class="mt-1 text-xs text-slate-500" x-text="uploadLabel"></p>
|
||||
</div>
|
||||
</template>
|
||||
@error('files')<p class="mt-1 text-xs text-red-600">{{ $message }}</p>@enderror
|
||||
@error('files.*')<p class="mt-1 text-xs text-red-600">{{ $message }}</p>@enderror
|
||||
</div>
|
||||
@@ -52,7 +68,11 @@
|
||||
|
||||
<div class="flex justify-end gap-3 pt-2">
|
||||
<a href="{{ route('transfer.transfers.index') }}" class="rounded-xl border border-slate-200 px-4 py-2 text-sm font-medium text-slate-700 hover:bg-slate-50">Cancel</a>
|
||||
<button type="submit" class="rounded-xl bg-indigo-600 px-4 py-2 text-sm font-semibold text-white hover:bg-indigo-700">Create transfer</button>
|
||||
<button type="submit" class="rounded-xl bg-indigo-600 px-4 py-2 text-sm font-semibold text-white hover:bg-indigo-700 disabled:opacity-60"
|
||||
:disabled="uploading || submitting">
|
||||
<span x-show="!uploading && !submitting">Create transfer</span>
|
||||
<span x-show="uploading || submitting" x-cloak>Uploading…</span>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\Api\ChunkedUploadController;
|
||||
use App\Http\Controllers\Api\MeController;
|
||||
use App\Http\Controllers\Api\QrCodeController;
|
||||
use App\Http\Controllers\Api\TransferController;
|
||||
@@ -7,6 +8,9 @@ use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::middleware('auth.service:transfer')->prefix('v1')->group(function () {
|
||||
Route::post('/transfers', [TransferController::class, 'store']);
|
||||
Route::post('/transfers/upload/init', [ChunkedUploadController::class, 'init']);
|
||||
Route::post('/transfers/upload/chunk', [ChunkedUploadController::class, 'chunk']);
|
||||
Route::post('/transfers/upload/finalize', [ChunkedUploadController::class, 'finalize']);
|
||||
});
|
||||
|
||||
Route::middleware(['auth:sanctum', \App\Http\Middleware\SetActingAccount::class])->prefix('v1')->group(function () {
|
||||
|
||||
@@ -8,6 +8,7 @@ use App\Http\Controllers\Qr\AccountController;
|
||||
use App\Http\Controllers\Qr\AfiaController;
|
||||
use App\Http\Controllers\Qr\TeamController;
|
||||
use App\Http\Controllers\Transfer\AnalyticsController;
|
||||
use App\Http\Controllers\Transfer\ChunkedUploadController;
|
||||
use App\Http\Controllers\Transfer\FilesController;
|
||||
use App\Http\Controllers\Transfer\OverviewController;
|
||||
use App\Http\Controllers\Transfer\TransferController;
|
||||
@@ -42,6 +43,9 @@ Route::middleware(['auth'])->group(function () {
|
||||
|
||||
Route::get('/transfers', [TransferController::class, 'index'])->name('transfer.transfers.index');
|
||||
Route::get('/transfers/create', [TransferController::class, 'create'])->name('transfer.transfers.create');
|
||||
Route::post('/transfers/upload/init', [ChunkedUploadController::class, 'init'])->name('transfer.transfers.upload.init');
|
||||
Route::post('/transfers/upload/chunk', [ChunkedUploadController::class, 'chunk'])->name('transfer.transfers.upload.chunk');
|
||||
Route::post('/transfers/upload/finalize', [ChunkedUploadController::class, 'finalize'])->name('transfer.transfers.upload.finalize');
|
||||
Route::post('/transfers', [TransferController::class, 'store'])->name('transfer.transfers.store');
|
||||
Route::get('/transfers/{transfer}', [TransferController::class, 'show'])->name('transfer.transfers.show');
|
||||
Route::delete('/transfers/{transfer}', [TransferController::class, 'destroy'])->name('transfer.transfers.destroy');
|
||||
|
||||
@@ -59,4 +59,48 @@ class TransferApiTest extends TestCase
|
||||
$this->post('/api/v1/transfers', ['mailbox' => 'x@y.com'])
|
||||
->assertUnauthorized();
|
||||
}
|
||||
|
||||
public function test_webmail_service_can_finalize_chunked_upload(): void
|
||||
{
|
||||
Http::fake([
|
||||
rtrim((string) config('identity.api_url'), '/').'/identity/profile*' => Http::response([
|
||||
'data' => [
|
||||
'public_id' => (string) Str::uuid(),
|
||||
'name' => 'Mail User',
|
||||
'email' => 'chunked@acme.com',
|
||||
'picture' => null,
|
||||
],
|
||||
]),
|
||||
]);
|
||||
|
||||
$init = $this->withToken('test-webmail-key')->postJson('/api/v1/transfers/upload/init', [
|
||||
'mailbox' => 'chunked@acme.com',
|
||||
'filename' => 'archive.zip',
|
||||
'filesize' => 12,
|
||||
])->assertOk()->json();
|
||||
|
||||
$uploadId = (string) ($init['upload_id'] ?? '');
|
||||
$this->assertNotSame('', $uploadId);
|
||||
|
||||
$chunk = UploadedFile::fake()->createWithContent('chunk_0', str_repeat('a', 12));
|
||||
$this->withToken('test-webmail-key')->post('/api/v1/transfers/upload/chunk', [
|
||||
'mailbox' => 'chunked@acme.com',
|
||||
'upload_id' => $uploadId,
|
||||
'chunk_index' => 0,
|
||||
'chunk_size' => 12,
|
||||
'chunk' => $chunk,
|
||||
])->assertOk();
|
||||
|
||||
$this->withToken('test-webmail-key')->postJson('/api/v1/transfers/upload/finalize', [
|
||||
'mailbox' => 'chunked@acme.com',
|
||||
'upload_id' => $uploadId,
|
||||
'total_chunks' => 1,
|
||||
'title' => 'Email: Big file',
|
||||
])
|
||||
->assertCreated()
|
||||
->assertJsonPath('data.title', 'Email: Big file')
|
||||
->assertJsonStructure(['data' => ['public_url', 'files']]);
|
||||
|
||||
$this->assertDatabaseCount('transfers', 1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user