Spaces:
Sleeping
Sleeping
File size: 6,093 Bytes
05c5ed5 | 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 | "use client";
import { useCallback, useState } from "react";
import { upload as uploadToVercelBlob } from "@vercel/blob/client";
import useSWR from "swr";
import { toast } from "sonner";
import { getStorageInfoAction } from "@/app/api/storage/actions";
// Types
interface StorageInfo {
type: "local" | "vercel-blob" | "s3";
supportsDirectUpload: boolean;
}
interface UploadOptions {
filename?: string;
contentType?: string;
}
interface UploadResult {
pathname: string;
url: string;
contentType?: string;
size?: number;
}
// Helpers
function useStorageInfo() {
const { data, isLoading } = useSWR<StorageInfo>(
"storage-info",
getStorageInfoAction,
{
revalidateOnFocus: false,
revalidateOnReconnect: false,
dedupingInterval: 60000, // Cache for 1 minute
},
);
return {
storageType: data?.type,
supportsDirectUpload: data?.supportsDirectUpload ?? false,
isLoading,
};
}
/**
* Hook for uploading files to storage.
*
* Automatically uses the optimal upload method based on storage backend:
* - Vercel Blob: Direct upload from browser (fast)
* - S3: Presigned URL (future)
* - Local FS: Server upload (fallback)
*
* @example
* ```tsx
* function FileUpload() {
* const { upload, isUploading } = useFileUpload();
*
* const handleFile = async (file: File) => {
* const result = await upload(file);
* console.log('Public URL:', result.url);
* };
*
* return <input type="file" onChange={(e) => e.target.files?.[0] && handleFile(e.target.files[0])} />;
* }
* ```
*/
export function useFileUpload() {
const {
storageType,
supportsDirectUpload,
isLoading: isLoadingStorageInfo,
} = useStorageInfo();
const [isUploading, setIsUploading] = useState(false);
const upload = useCallback(
async (
file: File,
uploadOptions: UploadOptions = {},
): Promise<UploadResult | undefined> => {
if (!(file instanceof File)) {
toast.error("Upload expects a File instance");
return;
}
const filename = uploadOptions.filename ?? file.name;
const contentType =
uploadOptions.contentType || file.type || "application/octet-stream";
// Wait for storage info to load
if (isLoadingStorageInfo || !storageType) {
toast.error("Storage is still loading. Please try again.");
return;
}
setIsUploading(true);
try {
// Vercel Blob direct upload
if (storageType === "vercel-blob") {
const blob = await uploadToVercelBlob(filename, file, {
access: "public",
handleUploadUrl: "/api/storage/upload-url",
contentType,
});
return {
pathname: blob.pathname,
url: blob.url,
contentType: blob.contentType,
size: file.size,
};
}
// S3 or other direct upload (future)
if (supportsDirectUpload && storageType === "s3") {
// Request presigned URL
const uploadUrlResponse = await fetch("/api/storage/upload-url", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ filename, contentType }),
});
if (!uploadUrlResponse.ok) {
const errorBody = await uploadUrlResponse.json().catch(() => ({}));
// Display detailed error with solution if available
if (errorBody.solution) {
toast.error(errorBody.error || "Failed to get upload URL", {
description: errorBody.solution,
duration: 10000, // Show for 10 seconds
});
} else {
toast.error(errorBody.error || "Failed to get upload URL");
}
return;
}
const uploadUrlData = await uploadUrlResponse.json();
// Upload to presigned URL
const uploadResponse = await fetch(uploadUrlData.url, {
method: uploadUrlData.method || "PUT",
headers: uploadUrlData.headers || { "Content-Type": contentType },
body: file,
});
if (!uploadResponse.ok) {
toast.error(`Upload failed: ${uploadResponse.status}`);
return;
}
return {
pathname: uploadUrlData.key,
// Use server-provided public source URL (not the presigned PUT URL)
url: uploadUrlData.sourceUrl ?? uploadUrlData.url,
contentType,
size: file.size,
};
}
// Fallback: Server upload (Local FS)
const formData = new FormData();
formData.append("file", file);
const serverUploadResponse = await fetch("/api/storage/upload", {
method: "POST",
body: formData,
});
if (!serverUploadResponse.ok) {
const errorBody = await serverUploadResponse.json().catch(() => ({}));
// Display detailed error with solution if available
if (errorBody.solution) {
toast.error(errorBody.error || "Server upload failed", {
description: errorBody.solution,
duration: 10000, // Show for 10 seconds
});
} else {
toast.error(errorBody.error || "Server upload failed");
}
return;
}
const result = await serverUploadResponse.json();
return {
pathname: result.key,
url: result.url,
contentType: result.metadata?.contentType,
size: result.metadata?.size,
};
} catch (error: unknown) {
const message =
error instanceof Error ? error.message : "Upload failed";
toast.error(message);
return;
} finally {
setIsUploading(false);
}
},
[storageType, supportsDirectUpload, isLoadingStorageInfo],
);
return {
upload,
isUploading: isUploading || isLoadingStorageInfo,
};
}
// Alias for backward compatibility
export const usePresignedUpload = useFileUpload;
|