"use client" 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, UploadIcon, ImageIcon } 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" import { Label } from "@/components/ui/label" import { Switch } from "@/components/ui/switch" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" import { Separator } from "@/components/ui/separator" // Function to strip metadata from image files async function stripImageMetadata(file: File): Promise { return new Promise((resolve, reject) => { const img = new Image() const objectUrl = URL.createObjectURL(file) img.onload = () => { // Create a canvas to draw the image without metadata const canvas = document.createElement("canvas") canvas.width = img.width canvas.height = img.height // Draw the image onto the canvas (this strips the metadata) const ctx = canvas.getContext("2d") if (!ctx) { URL.revokeObjectURL(objectUrl) reject(new Error("Failed to get canvas context")) return } ctx.drawImage(img, 0, 0) // Convert canvas back to a file canvas.toBlob((blob) => { // Clean up the object URL URL.revokeObjectURL(objectUrl) if (!blob) { reject(new Error("Failed to create blob from canvas")) return } // Create a new file with the same name but stripped metadata const strippedFile = new File([blob], file.name, { type: file.type, lastModified: file.lastModified, }) resolve(strippedFile) }, file.type) } img.onerror = () => { URL.revokeObjectURL(objectUrl) reject(new Error("Failed to load image")) } img.src = objectUrl }) } 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 [enableNip89, setEnableNip89] = useState(false) 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 handleTextChange = (event: ChangeEvent) => { const { value } = event.target // Replace links only if they contain https://lumina.rocks let updatedValue = value; // Replace https://lumina.rocks/profile/npub1... with "nostr:npub1..." updatedValue = updatedValue.replace(/https:\/\/lumina\.rocks\/profile\/(npub[1-9a-zA-Z]{0,64})/g, "nostr:$1"); // Replace https://lumina.rocks/note/note1... with "nostr:note1..." updatedValue = updatedValue.replace(/https:\/\/lumina\.rocks\/note\/(note[1-9a-zA-Z]{0,64})/g, "nostr:$1"); // Update the textarea with the modified value event.target.value = updatedValue; return updatedValue } 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 let 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 { // Strip metadata from the file file = await stripImageMetadata(file) 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) // alert("SHA256: " + sha256) // Create auth event for blossom auth via nostr const authEvent: NostrEvent = { kind: 24242, // content: desc, content: "File upload", created_at: createdAt, tags: [ // ["t", "media"], ["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 const authString = Buffer.from(JSON.stringify(authEventSigned)).toString("base64") const blossomServer = "https://" + serverChoice // await fetch(blossomServer + "/media", { 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 sha256 = responseJson.sha256 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, "blurhash " + blurhash, `dim ${image.width}x${image.height}`, ]) noteTags.push(["x", sha256]) } const createdAt = Math.floor(Date.now() / 1000) // NIP-89 client tagging (optional) if (enableNip89) { 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) // alert(JSON.stringify(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 ( <> Share Content Upload an image with your description to the Nostr network