import { useNostr, useNostrEvents } from "nostr-react" import { nip19, type NostrEvent } from "nostr-tools" import type React from "react" import { type ChangeEvent, type FormEvent, useState, useEffect, useCallback } from "react" import { Button } from "./ui/button" import { Textarea } from "./ui/textarea" import { ReloadIcon } from "@radix-ui/react-icons" import { Input } from "./ui/input" import { encode } from "blurhash" import { Drawer, DrawerContent, DrawerHeader, DrawerTitle, DrawerDescription, DrawerFooter, } from "@/components/ui/drawer" import { Spinner } from "@/components/spinner" import { signEvent } from "@/utils/utils" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select" async function calculateBlurhash(file: File): Promise { return new Promise((resolve, reject) => { const canvas = document.createElement("canvas") const ctx = canvas.getContext("2d") const img = new Image() img.onload = () => { canvas.width = 32 canvas.height = 32 ctx?.drawImage(img, 0, 0, 32, 32) const imageData = ctx?.getImageData(0, 0, 32, 32) if (imageData) { const blurhash = encode(imageData.data, imageData.width, imageData.height, 4, 4) resolve(blurhash) } else { reject(new Error("Failed to get image data")) } } img.onerror = reject img.src = URL.createObjectURL(file) }) } const UploadComponent: React.FC = () => { const { publish } = useNostr() const { createHash } = require("crypto") const loginType = typeof window !== "undefined" ? window.localStorage.getItem("loginType") : null const [previewUrl, setPreviewUrl] = useState("") const [isLoading, setIsLoading] = useState(false) const [isDrawerOpen, setIsDrawerOpen] = useState(false) const [uploadedNoteId, setUploadedNoteId] = useState("") const [retryCount, setRetryCount] = useState(0) const [shouldFetch, setShouldFetch] = useState(false) const [serverChoice, setServerChoice] = useState("blossom.band") const { events, isLoading: isNoteLoading } = useNostrEvents({ filter: shouldFetch ? { ids: uploadedNoteId ? [uploadedNoteId] : [], kinds: [20], limit: 1, } : { ids: [], kinds: [20], limit: 1 }, enabled: shouldFetch, }) useEffect(() => { if (uploadedNoteId) { setShouldFetch(true) } }, [uploadedNoteId]) useEffect(() => { let timeoutId: NodeJS.Timeout if (shouldFetch && events.length === 0 && !isNoteLoading) { timeoutId = setTimeout(() => { setRetryCount((prevCount) => prevCount + 1) setShouldFetch(false) setShouldFetch(true) }, 5000) // Retry every 5 seconds } return () => { if (timeoutId) { clearTimeout(timeoutId) } } }, [shouldFetch, events, isNoteLoading]) const handleRetry = useCallback(() => { setRetryCount((prevCount) => prevCount + 1) setShouldFetch(false) setShouldFetch(true) }, []) const handleFileChange = (event: ChangeEvent) => { const file = event.target.files?.[0] if (file) { const url = URL.createObjectURL(file) if (url.startsWith("blob:")) { setPreviewUrl(url) } // Optional: Bereinigung alter URLs return () => URL.revokeObjectURL(url) } } const handleServerChange = (value: string) => { setServerChoice(value) } async function onSubmit(event: FormEvent) { event.preventDefault() setIsLoading(true) const formData = new FormData(event.currentTarget) const desc = formData.get("description") as string const file = formData.get("file") as File let sha256 = "" let finalNoteContent = desc let finalFileUrl = "" console.log("File:", file) if (!desc && !file.size) { alert("Please enter a description and/or upload a file") setIsLoading(false) return } // get every hashtag in desc and cut off the # symbol let hashtags: string[] = desc.match(/#[a-zA-Z0-9]+/g) || [] if (hashtags) { hashtags = hashtags.map((hashtag) => hashtag.slice(1)) } // If file is present, upload it to the media server if (file) { const readFileAsArrayBuffer = (file: File): Promise => { return new Promise((resolve, reject) => { const reader = new FileReader() reader.onload = () => resolve(reader.result as ArrayBuffer) reader.onerror = () => reject(reader.error) reader.readAsArrayBuffer(file) }) } try { const arrayBuffer = await readFileAsArrayBuffer(file) const hashBuffer = createHash("sha256").update(Buffer.from(arrayBuffer)).digest() sha256 = hashBuffer.toString("hex") const unixNow = () => Math.floor(Date.now() / 1000) const newExpirationValue = () => (unixNow() + 60 * 5).toString() const pubkey = window.localStorage.getItem("pubkey") const createdAt = Math.floor(Date.now() / 1000) // Create auth event for blossom auth via nostr const authEvent: NostrEvent = { kind: 24242, content: desc, created_at: createdAt, tags: [ ["t", "upload"], ["x", sha256], ["expiration", newExpirationValue()], ], pubkey: "", // Add a placeholder for pubkey id: "", // Add a placeholder for id sig: "", // Add a placeholder for sig } console.log(authEvent) // Sign auth event const authEventSigned = (await signEvent(loginType, authEvent)) as NostrEvent // authEventSigned as base64 encoded string let authString = Buffer.from(JSON.stringify(authEventSigned)).toString('base64') const blossomServer = "https://" + serverChoice await fetch(blossomServer + "/upload", { method: "PUT", body: file, headers: { authorization: "Nostr " + authString }, }).then(async (res) => { if (res.ok) { const responseText = await res.text() const responseJson = JSON.parse(responseText) finalFileUrl = responseJson.url const noteTags = hashtags.map((tag) => ["t", tag]) let blurhash = "" if (file && file.type.startsWith("image/")) { try { blurhash = await calculateBlurhash(file) } catch (error) { console.error("Error calculating blurhash:", error) } } if (finalFileUrl) { const image = new Image() image.src = URL.createObjectURL(file) await new Promise((resolve) => { image.onload = resolve }) finalNoteContent = desc noteTags.push([ "imeta", "url " + finalFileUrl, "m " + file.type, "x " + sha256, "ox " + sha256, "blurhash " + blurhash, `dim ${image.width}x${image.height}`, ]) } const createdAt = Math.floor(Date.now() / 1000) // NIP-89 // ["client","lumina","31990:ff363e4afc398b7dd8ceb0b2e73e96fe9621ababc22ab150ffbb1aa0f34df8b2:1731850618505"] noteTags.push(["client", "lumina", "31990:" + "ff363e4afc398b7dd8ceb0b2e73e96fe9621ababc22ab150ffbb1aa0f34df8b2" + ":" + createdAt]) // Create the actual note const noteEvent: NostrEvent = { kind: 20, content: finalNoteContent, created_at: createdAt, tags: noteTags, pubkey: "", // Add a placeholder for pubkey id: "", // Add a placeholder for id sig: "", // Add a placeholder for sig } let signedEvent: NostrEvent | null = null // Sign the actual note signedEvent = (await signEvent(loginType, noteEvent)) as NostrEvent // If we got a signed event, publish it to nostr if (signedEvent) { console.log("final Event: ") console.log(signedEvent) publish(signedEvent) } setIsLoading(false) if (signedEvent != null) { setUploadedNoteId(signedEvent.id) setIsDrawerOpen(true) setShouldFetch(true) setRetryCount(0) } } else { // alert(await res.text()) throw new Error("Failed to upload file: " + await res.text()) } }) } catch (error) { alert(error) console.error("Error reading file:", error) setIsLoading(false) } } } return ( <>
{/* */} Upload to
{previewUrl && Preview} {isLoading ? ( ) : ( )}
Upload Status {isNoteLoading ? (
Checking note status...
) : events.length > 0 ? (
Success! Note found with ID: {`${events[0].id.slice(0, 5)}...${events[0].id.slice(-3)}`}
) : (

Note not found. It may take a moment to propagate.

)}
{events.length === 0 && ( )}
) } export default UploadComponent