ce0cc6fbf0
- Added user registration and login functionality with JWT authentication. - Created auth controller, service, and module in the backend. - Implemented user model and user products management. - Integrated NextAuth for session management on the frontend. - Added middleware for protecting routes and handling public access. - Updated frontend API routes to include authorization headers. - Enhanced recipe and user product models to support ownership and visibility. - Created registration and login pages in the frontend. - Added necessary types for NextAuth session management.
73 lines
2.6 KiB
TypeScript
73 lines
2.6 KiB
TypeScript
'use server';
|
|
|
|
import { revalidatePath } from 'next/cache';
|
|
import { API_BASE } from '../../../lib/api';
|
|
import { getAuthHeaders } from '../../../lib/auth-headers';
|
|
|
|
export async function updateProduct(formData: FormData) {
|
|
const id = Number(formData.get('id'));
|
|
const name = String(formData.get('name') || '').trim();
|
|
const canonicalName = String(formData.get('canonicalName') || '').trim();
|
|
const category = String(formData.get('category') || '').trim();
|
|
const subcategory = String(formData.get('subcategory') || '').trim();
|
|
const brand = String(formData.get('brand') || '').trim();
|
|
|
|
if (!name) throw new Error('Namn får inte vara tomt.');
|
|
if (name.length > 100) throw new Error('Namn får inte vara längre än 100 tecken.');
|
|
if (canonicalName.length > 100) throw new Error('Canonical name får inte vara längre än 100 tecken.');
|
|
if (category.length > 100) throw new Error('Kategori får inte vara längre än 100 tecken.');
|
|
if (subcategory.length > 100) throw new Error('Underkategori får inte vara längre än 100 tecken.');
|
|
if (brand.length > 100) throw new Error('Varumärke får inte vara längre än 100 tecken.');
|
|
|
|
const res = await fetch(`${API_BASE}/api/products/${id}`, {
|
|
method: 'PATCH',
|
|
headers: { 'Content-Type': 'application/json', ...(await getAuthHeaders()) },
|
|
body: JSON.stringify({
|
|
name: name || undefined,
|
|
canonicalName: canonicalName || undefined,
|
|
category: category || null,
|
|
subcategory: subcategory || null,
|
|
brand: brand || null,
|
|
}),
|
|
cache: 'no-store',
|
|
});
|
|
|
|
if (!res.ok) {
|
|
const text = await res.text();
|
|
throw new Error(`Kunde inte uppdatera produkt: ${text}`);
|
|
}
|
|
|
|
revalidatePath('/admin/products');
|
|
}
|
|
|
|
export async function setProductTags(productId: number, tags: string[]) {
|
|
const res = await fetch(`${API_BASE}/api/products/${productId}/tags`, {
|
|
method: 'PUT',
|
|
headers: { 'Content-Type': 'application/json', ...(await getAuthHeaders()) },
|
|
body: JSON.stringify({ tags }),
|
|
cache: 'no-store',
|
|
});
|
|
|
|
if (!res.ok) {
|
|
const text = await res.text();
|
|
throw new Error(`Kunde inte uppdatera taggar: ${text}`);
|
|
}
|
|
|
|
revalidatePath('/admin/products');
|
|
}
|
|
|
|
export async function deleteProduct(id: number) {
|
|
const res = await fetch(`${API_BASE}/api/products/${id}`, {
|
|
method: 'DELETE',
|
|
headers: { ...(await getAuthHeaders()) },
|
|
cache: 'no-store',
|
|
});
|
|
|
|
if (!res.ok) {
|
|
const text = await res.text();
|
|
throw new Error(`Kunde inte ta bort produkt: ${text}`);
|
|
}
|
|
|
|
revalidatePath('/admin/products');
|
|
}
|