mirror of
https://github.com/papra-hq/papra.git
synced 2025-12-31 09:00:00 -06:00
Compare commits
37 Commits
@papra/cli
...
2fa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c238ae2d0c | ||
|
|
b8c14d0f44 | ||
|
|
4878a3f8dd | ||
|
|
a213f0683b | ||
|
|
6a5bcef5ad | ||
|
|
607ba9496c | ||
|
|
ec34cf1788 | ||
|
|
e52287d04f | ||
|
|
f903c33d26 | ||
|
|
4342b319ea | ||
|
|
815f6f94f8 | ||
|
|
96f29ba58f | ||
|
|
33e3de9b8f | ||
|
|
1c64bca297 | ||
|
|
f7bf202230 | ||
|
|
5b905a1714 | ||
|
|
7a4a3d4c5b | ||
|
|
d795798931 | ||
|
|
95662d025f | ||
|
|
9d9be949b0 | ||
|
|
cf91515cfe | ||
|
|
d6f71ba5ec | ||
|
|
5bdb7c06bf | ||
|
|
2872c979fa | ||
|
|
23e66aeadf | ||
|
|
6f38659638 | ||
|
|
e3e0078673 | ||
|
|
2cf86e5968 | ||
|
|
76a72ace8d | ||
|
|
17d6e9aa6a | ||
|
|
f488e63c38 | ||
|
|
0092e530b7 | ||
|
|
364b58b74d | ||
|
|
d08cf2b195 | ||
|
|
fcd440cbbb | ||
|
|
d588e417c9 | ||
|
|
ca06919bb8 |
5
.changeset/khaki-glasses-draw.md
Normal file
5
.changeset/khaki-glasses-draw.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@papra/docker": patch
|
||||
---
|
||||
|
||||
Added a dedicated increased timeout for the document upload route
|
||||
5
.changeset/metal-buttons-mate.md
Normal file
5
.changeset/metal-buttons-mate.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@papra/docker": patch
|
||||
---
|
||||
|
||||
Added a feedback message upon request timeout
|
||||
5
.changeset/proud-rivers-film.md
Normal file
5
.changeset/proud-rivers-film.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@papra/docker": patch
|
||||
---
|
||||
|
||||
Organizations listing and details in the admin dashboard
|
||||
5
.changeset/ten-friends-shine.md
Normal file
5
.changeset/ten-friends-shine.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@papra/docker": patch
|
||||
---
|
||||
|
||||
Changed config key `config.server.routeTimeoutMs` to `config.server.defaultRouteTimeoutMs` (env variable remains the same)
|
||||
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
@@ -29,7 +29,7 @@ jobs:
|
||||
run: pnpm -r --parallel -F "./packages/*" build
|
||||
|
||||
- name: Run linters
|
||||
run: pnpm -r --parallel lint
|
||||
run: pnpm -r --parallel lint --quiet
|
||||
|
||||
- name: Type check
|
||||
# Exclude docs as their are some typing issues we are ok with for now
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"expo": {
|
||||
"name": "mobile",
|
||||
"slug": "mobile",
|
||||
"name": "Papra",
|
||||
"slug": "papra",
|
||||
"version": "1.0.0",
|
||||
"orientation": "portrait",
|
||||
"icon": "./src/assets/images/icon.png",
|
||||
@@ -9,7 +9,8 @@
|
||||
"userInterfaceStyle": "automatic",
|
||||
"newArchEnabled": true,
|
||||
"ios": {
|
||||
"supportsTablet": true
|
||||
"supportsTablet": true,
|
||||
"bundleIdentifier": "app.papra.ios"
|
||||
},
|
||||
"android": {
|
||||
"adaptiveIcon": {
|
||||
@@ -19,7 +20,8 @@
|
||||
"monochromeImage": "./src/assets/images/android-icon-monochrome.png"
|
||||
},
|
||||
"edgeToEdgeEnabled": true,
|
||||
"predictiveBackGestureEnabled": false
|
||||
"predictiveBackGestureEnabled": false,
|
||||
"package": "app.papra.android"
|
||||
},
|
||||
"web": {
|
||||
"output": "static",
|
||||
|
||||
@@ -11,6 +11,14 @@ export default function RootLayout() {
|
||||
<Stack.Screen name="auth/login" options={{ headerShown: false }} />
|
||||
<Stack.Screen name="auth/signup" options={{ headerShown: false }} />
|
||||
<Stack.Screen name="(with-organizations)" options={{ headerShown: false }} />
|
||||
<Stack.Screen
|
||||
name="document/view"
|
||||
options={{
|
||||
headerShown: false,
|
||||
presentation: 'modal',
|
||||
animation: 'slide_from_bottom',
|
||||
}}
|
||||
/>
|
||||
</Stack>
|
||||
<StatusBar style="auto" />
|
||||
</ApiProvider>
|
||||
|
||||
3
apps/mobile/app/(app)/document/view.tsx
Normal file
3
apps/mobile/app/(app)/document/view.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
import DocumentViewScreen from '@/modules/documents-actions/screens/document-view.screen';
|
||||
|
||||
export default DocumentViewScreen;
|
||||
5
apps/mobile/app/ReactotronConfig.ts
Normal file
5
apps/mobile/app/ReactotronConfig.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import Reactotron from 'reactotron-react-native';
|
||||
|
||||
Reactotron.configure({ name: 'Papra' }) // controls connection & communication settings
|
||||
.useReactNative() // add all built-in react native plugins
|
||||
.connect(); // let's connect!
|
||||
@@ -1,7 +1,13 @@
|
||||
import { useQuery } from '@tanstack/react-query';
|
||||
import { Redirect } from 'expo-router';
|
||||
import { createAuthClient } from '@/modules/auth/auth.client';
|
||||
import { configLocalStorage } from '@/modules/config/config.local-storage';
|
||||
|
||||
if (__DEV__) {
|
||||
// eslint-disable-next-line ts/no-require-imports
|
||||
require('./ReactotronConfig');
|
||||
}
|
||||
|
||||
export default function Index() {
|
||||
const query = useQuery({
|
||||
queryKey: ['api-server-url'],
|
||||
@@ -17,6 +23,11 @@ export default function Index() {
|
||||
return <Redirect href="/config/server-selection" />;
|
||||
}
|
||||
|
||||
const authClient = createAuthClient({ baseUrl: query.data });
|
||||
if (authClient.getCookie()) {
|
||||
return <Redirect href="/(app)/(with-organizations)/(tabs)/list" />;
|
||||
}
|
||||
|
||||
return <Redirect href="/auth/login" />;
|
||||
};
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
{
|
||||
"name": "mobile",
|
||||
"type": "module",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"main": "expo-router/entry",
|
||||
"scripts": {
|
||||
"dev": "pnpm start",
|
||||
"start": "expo start",
|
||||
"android": "expo start --android",
|
||||
"ios": "expo start --ios",
|
||||
"android": "expo run:android",
|
||||
"ios": "expo run:ios",
|
||||
"web": "expo start --web",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "eslint . --fix",
|
||||
@@ -28,14 +29,16 @@
|
||||
"better-auth": "catalog:",
|
||||
"expo": "~54.0.22",
|
||||
"expo-constants": "~18.0.10",
|
||||
"expo-document-picker": "^14.0.7",
|
||||
"expo-document-picker": "^14.0.8",
|
||||
"expo-file-system": "^19.0.19",
|
||||
"expo-font": "~14.0.9",
|
||||
"expo-haptics": "~15.0.7",
|
||||
"expo-image": "~3.0.10",
|
||||
"expo-linking": "~8.0.8",
|
||||
"expo-network": "^8.0.8",
|
||||
"expo-router": "~6.0.14",
|
||||
"expo-secure-store": "^15.0.7",
|
||||
"expo-sharing": "^14.0.7",
|
||||
"expo-splash-screen": "~31.0.10",
|
||||
"expo-status-bar": "~3.0.8",
|
||||
"expo-symbols": "~1.0.7",
|
||||
@@ -46,6 +49,7 @@
|
||||
"react-dom": "19.1.0",
|
||||
"react-native": "0.81.5",
|
||||
"react-native-gesture-handler": "~2.28.0",
|
||||
"react-native-pdf": "^7.0.3",
|
||||
"react-native-reanimated": "~4.1.1",
|
||||
"react-native-safe-area-context": "~5.6.0",
|
||||
"react-native-screens": "~4.16.0",
|
||||
@@ -59,6 +63,7 @@
|
||||
"eas-cli": "^16.27.0",
|
||||
"eslint": "catalog:",
|
||||
"eslint-config-expo": "~10.0.0",
|
||||
"reactotron-react-native": "^5.1.18",
|
||||
"typescript": "catalog:",
|
||||
"vitest": "catalog:"
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
type DateKeys = 'createdAt' | 'updatedAt' | 'deletedAt' | 'expiresAt' | 'lastTriggeredAt' | 'lastUsedAt' | 'scheduledPurgeAt';
|
||||
|
||||
type CoerceDate<T> = T extends string | Date
|
||||
export type CoerceDate<T> = T extends string | Date
|
||||
? Date
|
||||
: T extends string | Date | null | undefined
|
||||
? Date | undefined
|
||||
: T;
|
||||
|
||||
type CoerceDates<T> = {
|
||||
export type CoerceDates<T> = {
|
||||
[K in keyof T]: K extends DateKeys ? CoerceDate<T[K]> : T[K];
|
||||
};
|
||||
|
||||
@@ -41,3 +41,9 @@ export function coerceDates<T extends Record<string, unknown>>(obj: T): CoerceDa
|
||||
...('scheduledPurgeAt' in obj ? { scheduledPurgeAt: coerceDateOrUndefined(obj.scheduledPurgeAt) } : {}),
|
||||
} as CoerceDates<T>;
|
||||
}
|
||||
|
||||
export type LocalDocument = {
|
||||
uri: string;
|
||||
name: string;
|
||||
type: string | undefined;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,335 @@
|
||||
import type { CoerceDates } from '@/modules/api/api.models';
|
||||
import type { Document } from '@/modules/documents/documents.types';
|
||||
import type { ThemeColors } from '@/modules/ui/theme.constants';
|
||||
import { MaterialCommunityIcons } from '@expo/vector-icons';
|
||||
import { router } from 'expo-router';
|
||||
import * as Sharing from 'expo-sharing';
|
||||
import {
|
||||
Modal,
|
||||
StyleSheet,
|
||||
Text,
|
||||
TouchableOpacity,
|
||||
TouchableWithoutFeedback,
|
||||
View,
|
||||
} from 'react-native';
|
||||
import { useAuthClient } from '@/modules/api/providers/api.provider';
|
||||
import { configLocalStorage } from '@/modules/config/config.local-storage';
|
||||
import { fetchDocumentFile } from '@/modules/documents/documents.services';
|
||||
import { useAlert } from '@/modules/ui/providers/alert-provider';
|
||||
import { useThemeColor } from '@/modules/ui/providers/use-theme-color';
|
||||
|
||||
type DocumentActionSheetProps = {
|
||||
visible: boolean;
|
||||
document: CoerceDates<Document> | undefined;
|
||||
onClose: () => void;
|
||||
};
|
||||
|
||||
export function DocumentActionSheet({
|
||||
visible,
|
||||
document,
|
||||
onClose,
|
||||
}: DocumentActionSheetProps) {
|
||||
const themeColors = useThemeColor();
|
||||
const styles = createStyles({ themeColors });
|
||||
const { showAlert } = useAlert();
|
||||
const authClient = useAuthClient();
|
||||
|
||||
if (document === undefined) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// Check if document can be viewed in DocumentViewerScreen
|
||||
// Supported types: images (image/*) and PDFs (application/pdf)
|
||||
const isViewable
|
||||
= document.mimeType.startsWith('image/')
|
||||
|| document.mimeType.startsWith('application/pdf');
|
||||
|
||||
const formatFileSize = (bytes: number): string => {
|
||||
if (bytes < 1024) {
|
||||
return `${bytes} B`;
|
||||
}
|
||||
if (bytes < 1024 * 1024) {
|
||||
return `${(bytes / 1024).toFixed(1)} KB`;
|
||||
}
|
||||
return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
|
||||
};
|
||||
|
||||
const formatDate = (dateString: string): string => {
|
||||
const date = new Date(dateString);
|
||||
return date.toLocaleDateString('en-US', {
|
||||
month: 'short',
|
||||
day: 'numeric',
|
||||
year: 'numeric',
|
||||
});
|
||||
};
|
||||
|
||||
const handleView = async () => {
|
||||
onClose();
|
||||
router.push({
|
||||
pathname: '/(app)/document/view',
|
||||
params: {
|
||||
documentId: document.id,
|
||||
organizationId: document.organizationId,
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
const handleDownloadAndShare = async () => {
|
||||
const baseUrl = await configLocalStorage.getApiServerBaseUrl();
|
||||
|
||||
if (baseUrl == null) {
|
||||
showAlert({
|
||||
title: 'Error',
|
||||
message: 'Base URL not found',
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
const canShare = await Sharing.isAvailableAsync();
|
||||
if (!canShare) {
|
||||
showAlert({
|
||||
title: 'Sharing Failed',
|
||||
message: 'Sharing is not available on this device. Please share the document manually.',
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
const fileUri = await fetchDocumentFile({
|
||||
document,
|
||||
organizationId: document.organizationId,
|
||||
baseUrl,
|
||||
authClient,
|
||||
});
|
||||
|
||||
await Sharing.shareAsync(fileUri);
|
||||
} catch (error) {
|
||||
console.error('Error downloading document file:', error);
|
||||
showAlert({
|
||||
title: 'Error',
|
||||
message: 'Failed to download document file',
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// Extract MIME type subtype, fallback to full MIME type if subtype is missing
|
||||
const mimeParts = document.mimeType.split('/');
|
||||
const mimeSubtype = mimeParts[1];
|
||||
const displayMimeType = mimeSubtype != null && mimeSubtype !== '' ? mimeSubtype : document.mimeType;
|
||||
|
||||
return (
|
||||
<Modal
|
||||
visible={visible}
|
||||
transparent
|
||||
animationType="slide"
|
||||
onRequestClose={onClose}
|
||||
>
|
||||
<TouchableWithoutFeedback onPress={onClose}>
|
||||
<View style={styles.overlay}>
|
||||
<TouchableWithoutFeedback>
|
||||
<View style={styles.sheet}>
|
||||
{/* Handle bar */}
|
||||
<View style={styles.handleBar} />
|
||||
|
||||
{/* Document info */}
|
||||
<View style={styles.documentInfo}>
|
||||
<Text style={styles.documentName} numberOfLines={2}>
|
||||
{document.name}
|
||||
</Text>
|
||||
|
||||
{/* Document details */}
|
||||
<View style={styles.detailsContainer}>
|
||||
<View style={styles.detailRow}>
|
||||
<MaterialCommunityIcons
|
||||
name="file"
|
||||
size={14}
|
||||
color={themeColors.mutedForeground}
|
||||
style={styles.detailIcon}
|
||||
/>
|
||||
<Text style={styles.detailText}>{formatFileSize(document.originalSize)}</Text>
|
||||
</View>
|
||||
<View style={styles.detailRow}>
|
||||
<MaterialCommunityIcons
|
||||
name="calendar"
|
||||
size={14}
|
||||
color={themeColors.mutedForeground}
|
||||
style={styles.detailIcon}
|
||||
/>
|
||||
<Text style={styles.detailText}>{formatDate(document.createdAt.toISOString())}</Text>
|
||||
</View>
|
||||
<View style={styles.detailRow}>
|
||||
<MaterialCommunityIcons
|
||||
name="file-document-outline"
|
||||
size={14}
|
||||
color={themeColors.mutedForeground}
|
||||
style={styles.detailIcon}
|
||||
/>
|
||||
<Text style={styles.detailText} numberOfLines={1}>
|
||||
{displayMimeType}
|
||||
</Text>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{/* Action buttons */}
|
||||
<View style={styles.actions}>
|
||||
{isViewable && (
|
||||
<TouchableOpacity
|
||||
style={styles.actionButton}
|
||||
onPress={async () => {
|
||||
onClose();
|
||||
await handleView();
|
||||
}}
|
||||
activeOpacity={0.7}
|
||||
>
|
||||
<View style={[styles.actionIcon, styles.viewIcon]}>
|
||||
<MaterialCommunityIcons
|
||||
name="eye"
|
||||
size={20}
|
||||
color={themeColors.primary}
|
||||
/>
|
||||
</View>
|
||||
<Text style={styles.actionText}>View</Text>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
|
||||
<TouchableOpacity
|
||||
style={styles.actionButton}
|
||||
onPress={async () => {
|
||||
onClose();
|
||||
await handleDownloadAndShare();
|
||||
}}
|
||||
activeOpacity={0.7}
|
||||
>
|
||||
<View style={[styles.actionIcon, styles.downloadIcon]}>
|
||||
<MaterialCommunityIcons
|
||||
name="download"
|
||||
size={20}
|
||||
color={themeColors.primary}
|
||||
/>
|
||||
</View>
|
||||
<Text style={styles.actionText}>Share</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
|
||||
{/* Cancel button */}
|
||||
<TouchableOpacity
|
||||
style={styles.cancelButton}
|
||||
onPress={onClose}
|
||||
activeOpacity={0.7}
|
||||
>
|
||||
<Text style={styles.cancelButtonText}>Cancel</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
</TouchableWithoutFeedback>
|
||||
</View>
|
||||
</TouchableWithoutFeedback>
|
||||
</Modal>
|
||||
);
|
||||
}
|
||||
|
||||
function createStyles({ themeColors }: { themeColors: ThemeColors }) {
|
||||
return StyleSheet.create({
|
||||
overlay: {
|
||||
flex: 1,
|
||||
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
||||
justifyContent: 'flex-end',
|
||||
},
|
||||
sheet: {
|
||||
backgroundColor: themeColors.secondaryBackground,
|
||||
borderTopLeftRadius: 20,
|
||||
borderTopRightRadius: 20,
|
||||
paddingBottom: 34, // Safe area for bottom
|
||||
paddingTop: 16,
|
||||
},
|
||||
handleBar: {
|
||||
width: 40,
|
||||
height: 4,
|
||||
backgroundColor: themeColors.border,
|
||||
borderRadius: 2,
|
||||
alignSelf: 'center',
|
||||
marginBottom: 16,
|
||||
},
|
||||
documentInfo: {
|
||||
paddingHorizontal: 24,
|
||||
paddingVertical: 16,
|
||||
borderBottomWidth: 1,
|
||||
borderBottomColor: themeColors.border,
|
||||
},
|
||||
documentName: {
|
||||
fontSize: 16,
|
||||
fontWeight: '600',
|
||||
color: themeColors.foreground,
|
||||
textAlign: 'center',
|
||||
marginBottom: 12,
|
||||
},
|
||||
detailsContainer: {
|
||||
flexDirection: 'row',
|
||||
justifyContent: 'center',
|
||||
flexWrap: 'wrap',
|
||||
gap: 16,
|
||||
marginTop: 8,
|
||||
},
|
||||
detailRow: {
|
||||
flexDirection: 'row',
|
||||
alignItems: 'center',
|
||||
gap: 6,
|
||||
},
|
||||
detailIcon: {
|
||||
marginRight: 2,
|
||||
},
|
||||
detailText: {
|
||||
fontSize: 12,
|
||||
color: themeColors.mutedForeground,
|
||||
},
|
||||
actions: {
|
||||
flexDirection: 'row',
|
||||
paddingHorizontal: 24,
|
||||
paddingVertical: 16,
|
||||
gap: 16,
|
||||
},
|
||||
actionButton: {
|
||||
flex: 1,
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
paddingVertical: 12,
|
||||
backgroundColor: themeColors.secondaryBackground,
|
||||
borderRadius: 12,
|
||||
},
|
||||
actionIcon: {
|
||||
width: 40,
|
||||
height: 40,
|
||||
borderRadius: 20,
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
marginBottom: 8,
|
||||
},
|
||||
viewIcon: {
|
||||
backgroundColor: `${themeColors.primary}15`,
|
||||
},
|
||||
downloadIcon: {
|
||||
backgroundColor: `${themeColors.primary}15`,
|
||||
},
|
||||
actionText: {
|
||||
fontSize: 14,
|
||||
fontWeight: '500',
|
||||
color: themeColors.foreground,
|
||||
},
|
||||
cancelButton: {
|
||||
marginHorizontal: 24,
|
||||
marginTop: 12,
|
||||
paddingVertical: 16,
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
backgroundColor: 'transparent',
|
||||
borderWidth: 1,
|
||||
borderColor: themeColors.border,
|
||||
borderRadius: 12,
|
||||
},
|
||||
cancelButtonText: {
|
||||
fontSize: 16,
|
||||
fontWeight: '600',
|
||||
color: themeColors.foreground,
|
||||
},
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,257 @@
|
||||
import type { CoerceDates } from '@/modules/api/api.models';
|
||||
import type { Document } from '@/modules/documents/documents.types';
|
||||
import type { ThemeColors } from '@/modules/ui/theme.constants';
|
||||
import { MaterialCommunityIcons } from '@expo/vector-icons';
|
||||
import { useQuery } from '@tanstack/react-query';
|
||||
import { useLocalSearchParams, useRouter } from 'expo-router';
|
||||
import React from 'react';
|
||||
import {
|
||||
ActivityIndicator,
|
||||
Image,
|
||||
StyleSheet,
|
||||
Text,
|
||||
TouchableOpacity,
|
||||
View,
|
||||
} from 'react-native';
|
||||
import Pdf from 'react-native-pdf';
|
||||
import { SafeAreaView } from 'react-native-safe-area-context';
|
||||
import { useApiClient, useAuthClient } from '@/modules/api/providers/api.provider';
|
||||
import { configLocalStorage } from '@/modules/config/config.local-storage';
|
||||
import { fetchDocument, fetchDocumentFile } from '@/modules/documents/documents.services';
|
||||
import { useAlert } from '@/modules/ui/providers/alert-provider';
|
||||
import { useThemeColor } from '@/modules/ui/providers/use-theme-color';
|
||||
|
||||
type DocumentFile = {
|
||||
uri: string;
|
||||
doc: CoerceDates<Document>;
|
||||
};
|
||||
|
||||
export default function DocumentViewScreen() {
|
||||
const router = useRouter();
|
||||
const params = useLocalSearchParams<{ documentId: string; organizationId: string }>();
|
||||
const themeColors = useThemeColor();
|
||||
const styles = createStyles({ themeColors });
|
||||
const { showAlert } = useAlert();
|
||||
const apiClient = useApiClient();
|
||||
const authClient = useAuthClient();
|
||||
const { documentId, organizationId } = params;
|
||||
|
||||
const documentQuery = useQuery({
|
||||
queryKey: ['organizations', organizationId, 'documents', documentId],
|
||||
queryFn: async () => {
|
||||
if (organizationId == null || documentId == null) {
|
||||
throw new Error('Organization ID and Document ID are required');
|
||||
}
|
||||
return fetchDocument({ organizationId, documentId, apiClient });
|
||||
},
|
||||
enabled: organizationId != null && documentId != null,
|
||||
});
|
||||
|
||||
const documentFileQuery = useQuery({
|
||||
queryKey: ['organizations', organizationId, 'documents', documentId, 'file'],
|
||||
queryFn: async () => {
|
||||
if (documentQuery.data == null) {
|
||||
throw new Error('Document not loaded');
|
||||
}
|
||||
|
||||
const baseUrl = await configLocalStorage.getApiServerBaseUrl();
|
||||
if (baseUrl == null) {
|
||||
throw new Error('Base URL not found');
|
||||
}
|
||||
|
||||
const fileUri = await fetchDocumentFile({
|
||||
document: documentQuery.data.document,
|
||||
organizationId,
|
||||
baseUrl,
|
||||
authClient,
|
||||
});
|
||||
|
||||
return {
|
||||
uri: fileUri,
|
||||
doc: documentQuery.data.document,
|
||||
} as DocumentFile;
|
||||
},
|
||||
enabled: documentQuery.isSuccess && documentQuery.data != null,
|
||||
});
|
||||
|
||||
const renderHeader = (documentName: string) => {
|
||||
return (
|
||||
<View style={styles.header}>
|
||||
<TouchableOpacity
|
||||
style={styles.backButton}
|
||||
onPress={() => router.back()}
|
||||
>
|
||||
<MaterialCommunityIcons
|
||||
name="close"
|
||||
size={24}
|
||||
color={themeColors.foreground}
|
||||
/>
|
||||
</TouchableOpacity>
|
||||
<Text style={styles.headerTitle} numberOfLines={1}>
|
||||
{documentName}
|
||||
</Text>
|
||||
<View style={styles.headerSpacer} />
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
const renderDocumentFile = (file: DocumentFile) => {
|
||||
if (file.doc.mimeType.startsWith('image/')) {
|
||||
return (
|
||||
<Image
|
||||
source={{ uri: file.uri }}
|
||||
style={styles.pdfViewer}
|
||||
/>
|
||||
);
|
||||
}
|
||||
if (file.doc.mimeType.startsWith('application/pdf')) {
|
||||
return (
|
||||
<Pdf
|
||||
source={{ uri: file.uri, cache: true }}
|
||||
style={styles.pdfViewer}
|
||||
onError={(error) => {
|
||||
console.error('PDF error:', error);
|
||||
showAlert({
|
||||
title: 'Error',
|
||||
message: 'Failed to load PDF',
|
||||
});
|
||||
}}
|
||||
enablePaging={true}
|
||||
horizontal={false}
|
||||
enableAnnotationRendering={true}
|
||||
fitPolicy={0}
|
||||
spacing={10}
|
||||
/>
|
||||
);
|
||||
}
|
||||
return <View style={styles.pdfViewer} />;
|
||||
};
|
||||
|
||||
const isLoading = documentQuery.isLoading || documentFileQuery.isLoading;
|
||||
const error = documentQuery.error ?? documentFileQuery.error;
|
||||
const documentFile = documentFileQuery.data;
|
||||
const documentName = documentFile?.doc.name ?? 'Document';
|
||||
|
||||
return (
|
||||
<SafeAreaView style={styles.container}>
|
||||
{renderHeader(documentName)}
|
||||
{isLoading
|
||||
? (
|
||||
<View style={styles.loadingContainer}>
|
||||
<ActivityIndicator size="large" color={themeColors.primary} />
|
||||
<Text style={styles.loadingText}>Loading document...</Text>
|
||||
</View>
|
||||
)
|
||||
: error != null
|
||||
? (
|
||||
<View style={styles.errorContainer}>
|
||||
<MaterialCommunityIcons
|
||||
name="file-pdf-box"
|
||||
size={64}
|
||||
color={themeColors.mutedForeground}
|
||||
/>
|
||||
<Text style={styles.errorText}>Failed to load document</Text>
|
||||
<TouchableOpacity
|
||||
style={styles.errorButton}
|
||||
onPress={() => {
|
||||
void documentQuery.refetch();
|
||||
}}
|
||||
>
|
||||
<Text style={styles.errorButtonText}>Retry</Text>
|
||||
</TouchableOpacity>
|
||||
<TouchableOpacity
|
||||
style={styles.errorButton}
|
||||
onPress={() => router.back()}
|
||||
>
|
||||
<Text style={styles.errorButtonText}>Go Back</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
)
|
||||
: documentFile != null
|
||||
? (
|
||||
<View style={styles.pdfContainer}>
|
||||
{renderDocumentFile(documentFile)}
|
||||
</View>
|
||||
)
|
||||
: null}
|
||||
</SafeAreaView>
|
||||
);
|
||||
}
|
||||
|
||||
function createStyles({ themeColors }: { themeColors: ThemeColors }) {
|
||||
return StyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
backgroundColor: themeColors.background,
|
||||
},
|
||||
header: {
|
||||
flexDirection: 'row',
|
||||
alignItems: 'center',
|
||||
paddingHorizontal: 24,
|
||||
paddingVertical: 16,
|
||||
borderBottomWidth: 1,
|
||||
borderBottomColor: themeColors.border,
|
||||
},
|
||||
backButton: {
|
||||
width: 40,
|
||||
height: 40,
|
||||
borderRadius: 20,
|
||||
backgroundColor: themeColors.secondaryBackground,
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
},
|
||||
headerTitle: {
|
||||
flex: 1,
|
||||
fontSize: 18,
|
||||
fontWeight: 'bold',
|
||||
color: themeColors.foreground,
|
||||
marginHorizontal: 16,
|
||||
},
|
||||
headerSpacer: {
|
||||
width: 40,
|
||||
},
|
||||
pdfContainer: {
|
||||
flex: 1,
|
||||
backgroundColor: themeColors.background,
|
||||
},
|
||||
pdfViewer: {
|
||||
flex: 1,
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
},
|
||||
loadingContainer: {
|
||||
flex: 1,
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
},
|
||||
loadingText: {
|
||||
marginTop: 16,
|
||||
fontSize: 16,
|
||||
color: themeColors.mutedForeground,
|
||||
},
|
||||
errorContainer: {
|
||||
flex: 1,
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
padding: 32,
|
||||
},
|
||||
errorText: {
|
||||
fontSize: 18,
|
||||
color: themeColors.foreground,
|
||||
marginTop: 16,
|
||||
marginBottom: 24,
|
||||
},
|
||||
errorButton: {
|
||||
paddingHorizontal: 24,
|
||||
paddingVertical: 16,
|
||||
backgroundColor: themeColors.secondaryBackground,
|
||||
borderRadius: 12,
|
||||
marginTop: 16,
|
||||
},
|
||||
errorButtonText: {
|
||||
fontSize: 16,
|
||||
fontWeight: '600',
|
||||
color: themeColors.primary,
|
||||
},
|
||||
});
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
import type { LocalDocument } from '@/modules/api/api.models';
|
||||
import type { ThemeColors } from '@/modules/ui/theme.constants';
|
||||
import * as DocumentPicker from 'expo-document-picker';
|
||||
import { File } from 'expo-file-system';
|
||||
import {
|
||||
Modal,
|
||||
StyleSheet,
|
||||
@@ -58,12 +58,16 @@ export function ImportDrawer({ visible, onClose }: ImportDrawerProps) {
|
||||
return;
|
||||
}
|
||||
|
||||
const [pickerFile] = result.assets;
|
||||
const pickerFile = result.assets[0];
|
||||
if (!pickerFile) {
|
||||
return;
|
||||
}
|
||||
|
||||
const file = new File(pickerFile.uri);
|
||||
const file: LocalDocument = {
|
||||
uri: pickerFile.uri,
|
||||
name: pickerFile.name,
|
||||
type: pickerFile.mimeType,
|
||||
};
|
||||
|
||||
await uploadDocument({ file, apiClient, organizationId: currentOrganizationId });
|
||||
await queryClient.invalidateQueries({ queryKey: ['organizations', currentOrganizationId, 'documents'] });
|
||||
|
||||
@@ -1,28 +1,37 @@
|
||||
import type { ApiClient } from '../api/api.client';
|
||||
import type { CoerceDates, LocalDocument } from '../api/api.models';
|
||||
import type { AuthClient } from '../auth/auth.client';
|
||||
import type { Document } from './documents.types';
|
||||
import * as FileSystem from 'expo-file-system/legacy';
|
||||
import { coerceDates } from '../api/api.models';
|
||||
|
||||
export function getFormData(pojo: Record<string, string | Blob>): FormData {
|
||||
export function getFormData(pojo: Record<string, string | FormDataValue | Blob>): FormData {
|
||||
const formData = new FormData();
|
||||
Object.entries(pojo).forEach(([key, value]) => formData.append(key, value));
|
||||
|
||||
return formData;
|
||||
}
|
||||
|
||||
export async function uploadDocument({
|
||||
file,
|
||||
organizationId,
|
||||
|
||||
apiClient,
|
||||
}: {
|
||||
file: Blob;
|
||||
file: LocalDocument;
|
||||
organizationId: string;
|
||||
|
||||
apiClient: ApiClient;
|
||||
}) {
|
||||
const { document } = await apiClient<{ document: Document }>({
|
||||
method: 'POST',
|
||||
path: `/api/organizations/${organizationId}/documents`,
|
||||
body: getFormData({ file }),
|
||||
body: getFormData({
|
||||
file: {
|
||||
uri: file.uri,
|
||||
// to avoid %20 in file name it is issue in react native that upload file name replaces spaces with %20
|
||||
name: file.name.replace(/ /g, '_'),
|
||||
type: file.type ?? 'application/json',
|
||||
},
|
||||
}),
|
||||
});
|
||||
|
||||
return {
|
||||
@@ -72,3 +81,53 @@ export async function fetchOrganizationDocuments({
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
export async function fetchDocument({
|
||||
organizationId,
|
||||
documentId,
|
||||
apiClient,
|
||||
}: {
|
||||
organizationId: string;
|
||||
documentId: string;
|
||||
apiClient: ApiClient;
|
||||
}) {
|
||||
const { document } = await apiClient<{ document: Document }>({
|
||||
method: 'GET',
|
||||
path: `/api/organizations/${organizationId}/documents/${documentId}`,
|
||||
});
|
||||
return {
|
||||
document: coerceDates(document),
|
||||
};
|
||||
}
|
||||
|
||||
export async function fetchDocumentFile({
|
||||
document,
|
||||
organizationId,
|
||||
baseUrl,
|
||||
authClient,
|
||||
}: {
|
||||
document: CoerceDates<Document>;
|
||||
organizationId: string;
|
||||
baseUrl: string;
|
||||
authClient: AuthClient;
|
||||
}) {
|
||||
const cookies = authClient.getCookie();
|
||||
const uri = `${baseUrl}/api/organizations/${organizationId}/documents/${document.id}/file`;
|
||||
const headers = {
|
||||
'Cookie': cookies,
|
||||
'Content-Type': 'application/json',
|
||||
};
|
||||
// Use cacheDirectory for better app compatibility
|
||||
const fileUri = `${FileSystem.cacheDirectory}${document.name}`;
|
||||
|
||||
// Download the file with authentication headers
|
||||
const downloadResult = await FileSystem.downloadAsync(uri, fileUri, {
|
||||
headers,
|
||||
});
|
||||
|
||||
if (downloadResult.status === 200) {
|
||||
return downloadResult.uri;
|
||||
} else {
|
||||
throw new Error(`Download failed with status: ${downloadResult.status}`);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import type { Document } from '../documents.types';
|
||||
import type { CoerceDates } from '@/modules/api/api.models';
|
||||
import type { ThemeColors } from '@/modules/ui/theme.constants';
|
||||
import { useQuery } from '@tanstack/react-query';
|
||||
import { useState } from 'react';
|
||||
@@ -7,10 +9,12 @@ import {
|
||||
RefreshControl,
|
||||
StyleSheet,
|
||||
Text,
|
||||
TouchableOpacity,
|
||||
View,
|
||||
} from 'react-native';
|
||||
import { SafeAreaView } from 'react-native-safe-area-context';
|
||||
import { useApiClient } from '@/modules/api/providers/api.provider';
|
||||
import { DocumentActionSheet } from '@/modules/documents-actions/components/document-action-sheet';
|
||||
import { OrganizationPickerButton } from '@/modules/organizations/components/organization-picker-button';
|
||||
import { OrganizationPickerDrawer } from '@/modules/organizations/components/organization-picker-drawer';
|
||||
import { useOrganizations } from '@/modules/organizations/organizations.provider';
|
||||
@@ -22,6 +26,7 @@ export function DocumentsListScreen() {
|
||||
const themeColors = useThemeColor();
|
||||
const apiClient = useApiClient();
|
||||
const { currentOrganizationId, isLoading: isLoadingOrganizations } = useOrganizations();
|
||||
const [onDocumentActionSheet, setOnDocumentActionSheet] = useState<CoerceDates<Document> | undefined>(undefined);
|
||||
const [isDrawerVisible, setIsDrawerVisible] = useState(false);
|
||||
const pagination = { pageIndex: 0, pageSize: 20 };
|
||||
|
||||
@@ -75,6 +80,13 @@ export function DocumentsListScreen() {
|
||||
|
||||
return (
|
||||
<SafeAreaView style={styles.container}>
|
||||
{onDocumentActionSheet && (
|
||||
<DocumentActionSheet
|
||||
visible={true}
|
||||
document={onDocumentActionSheet}
|
||||
onClose={() => setOnDocumentActionSheet(undefined)}
|
||||
/>
|
||||
)}
|
||||
<View style={styles.header}>
|
||||
<Text style={styles.title}>Documents</Text>
|
||||
<OrganizationPickerButton onPress={() => setIsDrawerVisible(true)} />
|
||||
@@ -91,39 +103,40 @@ export function DocumentsListScreen() {
|
||||
data={documentsQuery.data?.documents ?? []}
|
||||
keyExtractor={item => item.id}
|
||||
renderItem={({ item }) => (
|
||||
<View style={styles.documentCard}>
|
||||
<View style={{ backgroundColor: themeColors.muted, padding: 10, borderRadius: 6, marginRight: 12 }}>
|
||||
<Icon name="file-text" size={24} color={themeColors.primary} />
|
||||
</View>
|
||||
<View>
|
||||
<Text style={styles.documentTitle} numberOfLines={2}>
|
||||
{item.name}
|
||||
</Text>
|
||||
<View style={styles.documentMeta}>
|
||||
<Text style={styles.metaText}>{formatFileSize(item.originalSize)}</Text>
|
||||
<Text style={styles.metaSplitter}>-</Text>
|
||||
<Text style={styles.metaText}>{formatDate(item.createdAt)}</Text>
|
||||
{item.tags.length > 0 && (
|
||||
<View style={styles.tagsContainer}>
|
||||
{item.tags.map(tag => (
|
||||
<View
|
||||
key={tag.id}
|
||||
style={[
|
||||
styles.tag,
|
||||
{ backgroundColor: `${tag.color}10` },
|
||||
]}
|
||||
>
|
||||
<Text style={[styles.tagText, { color: tag.color }]}>
|
||||
{tag.name}
|
||||
</Text>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
)}
|
||||
<TouchableOpacity onPress={() => setOnDocumentActionSheet(item)}>
|
||||
<View style={styles.documentCard}>
|
||||
<View style={{ backgroundColor: themeColors.muted, padding: 10, borderRadius: 6, marginRight: 12 }}>
|
||||
<Icon name="file-text" size={24} color={themeColors.primary} />
|
||||
</View>
|
||||
<View>
|
||||
<Text style={styles.documentTitle} numberOfLines={2}>
|
||||
{item.name}
|
||||
</Text>
|
||||
<View style={styles.documentMeta}>
|
||||
<Text style={styles.metaText}>{formatFileSize(item.originalSize)}</Text>
|
||||
<Text style={styles.metaSplitter}>-</Text>
|
||||
<Text style={styles.metaText}>{formatDate(item.createdAt)}</Text>
|
||||
{item.tags.length > 0 && (
|
||||
<View style={styles.tagsContainer}>
|
||||
{item.tags.map(tag => (
|
||||
<View
|
||||
key={tag.id}
|
||||
style={[
|
||||
styles.tag,
|
||||
{ backgroundColor: `${tag.color}10` },
|
||||
]}
|
||||
>
|
||||
<Text style={[styles.tagText, { color: tag.color }]}>
|
||||
{tag.name}
|
||||
</Text>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
)}
|
||||
</View>
|
||||
</View>
|
||||
|
||||
</View>
|
||||
</View>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
ListEmptyComponent={(
|
||||
<View style={styles.emptyContainer}>
|
||||
|
||||
17
apps/mobile/src/types/formdata.d.ts
vendored
Normal file
17
apps/mobile/src/types/formdata.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/* eslint-disable ts/consistent-type-definitions */
|
||||
/* eslint-disable ts/method-signature-style */
|
||||
|
||||
// Source - https://stackoverflow.com/a
|
||||
// Posted by Patrick Roberts, modified by community. See post 'Timeline' for change history
|
||||
// Retrieved 2025-12-19, License - CC BY-SA 4.0
|
||||
|
||||
interface FormDataValue {
|
||||
uri: string;
|
||||
name: string;
|
||||
type: string;
|
||||
}
|
||||
|
||||
interface FormData {
|
||||
append(name: string, value: string | FormDataValue | Blob, fileName?: string): void;
|
||||
set(name: string, value: string | FormDataValue | Blob, fileName?: string): void;
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "expo/tsconfig.base",
|
||||
"compilerOptions": {
|
||||
"jsx": "react-native",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["src/*"]
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
"dependencies": {
|
||||
"@branchlet/core": "^1.0.0",
|
||||
"@corentinth/chisels": "catalog:",
|
||||
"@corvu/otp-field": "^0.1.4",
|
||||
"@kobalte/core": "^0.13.10",
|
||||
"@kobalte/utils": "^0.9.1",
|
||||
"@modular-forms/solid": "^0.25.1",
|
||||
@@ -50,6 +51,7 @@
|
||||
"tailwind-merge": "^2.6.0",
|
||||
"unocss-preset-animations": "^1.3.0",
|
||||
"unstorage": "^1.16.0",
|
||||
"uqr": "^0.1.2",
|
||||
"valibot": "1.0.0-beta.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'Die Anfrage hat zu lange gedauert und ist abgelaufen. Bitte versuchen Sie es erneut.',
|
||||
'api-errors.document.already_exists': 'Das Dokument existiert bereits',
|
||||
'api-errors.document.size_too_large': 'Die Datei ist zu groß',
|
||||
'api-errors.intake-emails.already_exists': 'Eine Eingang-Email mit dieser Adresse existiert bereits.',
|
||||
|
||||
@@ -40,6 +40,20 @@ export const translations = {
|
||||
'auth.login.form.forgot-password.label': 'Forgot password?',
|
||||
'auth.login.form.submit': 'Login',
|
||||
|
||||
'auth.login.two-factor.title': 'Two-Factor Verification',
|
||||
'auth.login.two-factor.description.totp': 'Enter the 6-digit verification code from your authenticator app.',
|
||||
'auth.login.two-factor.description.backup-code': 'Enter one of your backup codes to access your account.',
|
||||
'auth.login.two-factor.code.label.totp': 'Authenticator code',
|
||||
'auth.login.two-factor.code.label.backup-code': 'Backup code',
|
||||
'auth.login.two-factor.code.placeholder.backup-code': 'Enter backup code',
|
||||
'auth.login.two-factor.code.required': 'Please enter the verification code',
|
||||
'auth.login.two-factor.trust-device.label': 'Trust this device for 30 days',
|
||||
'auth.login.two-factor.back': 'Back to login',
|
||||
'auth.login.two-factor.submit': 'Verify',
|
||||
'auth.login.two-factor.verification-failed': 'Verification failed. Please check your code and try again.',
|
||||
'auth.login.two-factor.use-backup-code': 'Use backup code instead',
|
||||
'auth.login.two-factor.use-totp': 'Use authenticator app instead',
|
||||
|
||||
'auth.register.title': 'Register to Papra',
|
||||
'auth.register.description': 'Create an account to start using Papra.',
|
||||
'auth.register.register-with-email': 'Register with email',
|
||||
@@ -102,6 +116,66 @@ export const translations = {
|
||||
'user.settings.logout.description': 'Logout from your account. You can login again later.',
|
||||
'user.settings.logout.button': 'Logout',
|
||||
|
||||
'user.settings.two-factor.title': 'Two-Factor Authentication',
|
||||
'user.settings.two-factor.description': 'Add an extra layer of security to your account.',
|
||||
'user.settings.two-factor.status.enabled': 'Enabled',
|
||||
'user.settings.two-factor.status.disabled': 'Disabled',
|
||||
'user.settings.two-factor.enable-button': 'Enable 2FA',
|
||||
'user.settings.two-factor.disable-button': 'Disable 2FA',
|
||||
'user.settings.two-factor.regenerate-codes-button': 'Regenerate backup codes',
|
||||
|
||||
'user.settings.two-factor.enable-dialog.title': 'Enable Two-Factor Authentication',
|
||||
'user.settings.two-factor.enable-dialog.description': 'Enter your password to enable 2FA.',
|
||||
'user.settings.two-factor.enable-dialog.password.label': 'Password',
|
||||
'user.settings.two-factor.enable-dialog.password.placeholder': 'Enter your password',
|
||||
'user.settings.two-factor.enable-dialog.password.required': 'Please enter your password',
|
||||
'user.settings.two-factor.enable-dialog.cancel': 'Cancel',
|
||||
'user.settings.two-factor.enable-dialog.submit': 'Continue',
|
||||
|
||||
'user.settings.two-factor.setup-dialog.title': 'Set Up Two-Factor Authentication',
|
||||
'user.settings.two-factor.setup-dialog.description': 'Scan this QR code with your authenticator app, then enter the verification code.',
|
||||
'user.settings.two-factor.setup-dialog.qr-loading': 'Loading QR code...',
|
||||
'user.settings.two-factor.setup-dialog.step1.title': 'Step 1: Scan the QR code',
|
||||
'user.settings.two-factor.setup-dialog.step1.description': 'Scan the QR code below or manually enter the setup key into your authenticator app.',
|
||||
'user.settings.two-factor.setup-dialog.copy-setup-key': 'Copy setup key',
|
||||
'user.settings.two-factor.setup-dialog.step2.title': 'Step 2: Verify the code',
|
||||
'user.settings.two-factor.setup-dialog.step2.description': 'Enter the 6-digit code generated by your authenticator app to verify and enable two-factor authentication.',
|
||||
'user.settings.two-factor.setup-dialog.code.label': 'Verification code',
|
||||
'user.settings.two-factor.setup-dialog.code.placeholder': 'Enter 6-digit code',
|
||||
'user.settings.two-factor.setup-dialog.code.required': 'Please enter the verification code',
|
||||
'user.settings.two-factor.setup-dialog.cancel': 'Cancel',
|
||||
'user.settings.two-factor.setup-dialog.verify': 'Verify and enable 2FA',
|
||||
|
||||
'user.settings.two-factor.backup-codes-dialog.title': 'Backup Codes',
|
||||
'user.settings.two-factor.backup-codes-dialog.description': 'Save these backup codes in a safe place. You can use them to access your account if you lose access to your authenticator app.',
|
||||
'user.settings.two-factor.backup-codes-dialog.warning': 'Each code can only be used once.',
|
||||
'user.settings.two-factor.backup-codes-dialog.copy': 'Copy backup codes',
|
||||
'user.settings.two-factor.backup-codes-dialog.download': 'Download backup codes',
|
||||
'user.settings.two-factor.backup-codes-dialog.download-filename': 'papra-2fa-backup-codes.txt',
|
||||
'user.settings.two-factor.backup-codes-dialog.copied': 'Codes copied to clipboard',
|
||||
'user.settings.two-factor.backup-codes-dialog.close': 'I\'ve saved my codes',
|
||||
|
||||
'user.settings.two-factor.disable-dialog.title': 'Disable Two-Factor Authentication',
|
||||
'user.settings.two-factor.disable-dialog.description': 'Enter your password to disable 2FA. This will make your account less secure.',
|
||||
'user.settings.two-factor.disable-dialog.password.label': 'Password',
|
||||
'user.settings.two-factor.disable-dialog.password.placeholder': 'Enter your password',
|
||||
'user.settings.two-factor.disable-dialog.password.required': 'Please enter your password',
|
||||
'user.settings.two-factor.disable-dialog.cancel': 'Cancel',
|
||||
'user.settings.two-factor.disable-dialog.submit': 'Disable 2FA',
|
||||
|
||||
'user.settings.two-factor.regenerate-dialog.title': 'Regenerate Backup Codes',
|
||||
'user.settings.two-factor.regenerate-dialog.description': 'This will invalidate all existing backup codes and generate new ones. Enter your password to continue.',
|
||||
'user.settings.two-factor.regenerate-dialog.password.label': 'Password',
|
||||
'user.settings.two-factor.regenerate-dialog.password.placeholder': 'Enter your password',
|
||||
'user.settings.two-factor.regenerate-dialog.password.required': 'Please enter your password',
|
||||
'user.settings.two-factor.regenerate-dialog.cancel': 'Cancel',
|
||||
'user.settings.two-factor.regenerate-dialog.submit': 'Regenerate codes',
|
||||
|
||||
'user.settings.two-factor.enabled': 'Two-factor authentication has been enabled',
|
||||
'user.settings.two-factor.disabled': 'Two-factor authentication has been disabled',
|
||||
'user.settings.two-factor.codes-regenerated': 'Backup codes have been regenerated',
|
||||
'user.settings.two-factor.verification-failed': 'Verification failed. Please check your code and try again.',
|
||||
|
||||
// Organizations
|
||||
|
||||
'organizations.list.title': 'Your organizations',
|
||||
@@ -598,6 +672,7 @@ export const translations = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'The request took too long and timed out. Please try again.',
|
||||
'api-errors.document.already_exists': 'The document already exists',
|
||||
'api-errors.document.size_too_large': 'The file size is too large',
|
||||
'api-errors.intake-emails.already_exists': 'An intake email with this address already exists.',
|
||||
@@ -638,6 +713,7 @@ export const translations = {
|
||||
'api-errors.FAILED_TO_UNLINK_LAST_ACCOUNT': 'Failed to unlink last account',
|
||||
'api-errors.ACCOUNT_NOT_FOUND': 'Account not found',
|
||||
'api-errors.USER_ALREADY_HAS_PASSWORD': 'User already has password',
|
||||
'api-errors.INVALID_CODE': 'The provided code is invalid or has expired',
|
||||
|
||||
// Not found
|
||||
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'La solicitud tardó demasiado y se agotó el tiempo. Por favor, inténtalo de nuevo.',
|
||||
'api-errors.document.already_exists': 'El documento ya existe',
|
||||
'api-errors.document.size_too_large': 'El archivo es demasiado grande',
|
||||
'api-errors.intake-emails.already_exists': 'Ya existe un correo de ingreso con esta dirección.',
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'La requête a pris trop de temps et a expiré. Veuillez réessayer.',
|
||||
'api-errors.document.already_exists': 'Le document existe déjà',
|
||||
'api-errors.document.size_too_large': 'Le fichier est trop volumineux',
|
||||
'api-errors.intake-emails.already_exists': 'Un email de réception avec cette adresse existe déjà.',
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'La richiesta ha impiegato troppo tempo ed è scaduta. Riprova.',
|
||||
'api-errors.document.already_exists': 'Il documento esiste già',
|
||||
'api-errors.document.size_too_large': 'Il file è troppo grande',
|
||||
'api-errors.intake-emails.already_exists': 'Un\'email di acquisizione con questo indirizzo esiste già.',
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'Het verzoek duurde te lang en is verlopen. Probeer het opnieuw.',
|
||||
'api-errors.document.already_exists': 'Het document bestaat al',
|
||||
'api-errors.document.size_too_large': 'Het bestand is te groot',
|
||||
'api-errors.intake-emails.already_exists': 'Er bestaat al een intake-e-mail met dit adres.',
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'Żądanie trwało zbyt długo i przekroczyło limit czasu. Spróbuj ponownie.',
|
||||
'api-errors.document.already_exists': 'Dokument już istnieje',
|
||||
'api-errors.document.size_too_large': 'Plik jest zbyt duży',
|
||||
'api-errors.intake-emails.already_exists': 'Adres e-mail do przyjęć z tym adresem już istnieje.',
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'A solicitação demorou muito e expirou. Por favor, tente novamente.',
|
||||
'api-errors.document.already_exists': 'O documento já existe',
|
||||
'api-errors.document.size_too_large': 'O arquivo é muito grande',
|
||||
'api-errors.intake-emails.already_exists': 'Um e-mail de entrada com este endereço já existe.',
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'O pedido demorou muito tempo e expirou. Por favor, tente novamente.',
|
||||
'api-errors.document.already_exists': 'O documento já existe',
|
||||
'api-errors.document.size_too_large': 'O arquivo é muito grande',
|
||||
'api-errors.intake-emails.already_exists': 'Um e-mail de entrada com este endereço já existe.',
|
||||
|
||||
@@ -600,6 +600,7 @@ export const translations: Partial<TranslationsDictionary> = {
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': 'Cererea a durat prea mult și a expirat. Vă rugăm să încercați din nou.',
|
||||
'api-errors.document.already_exists': 'Documentul există deja',
|
||||
'api-errors.document.size_too_large': 'Fișierul este prea mare',
|
||||
'api-errors.intake-emails.already_exists': 'Un email de primire cu această adresă există deja.',
|
||||
|
||||
721
apps/papra-client/src/locales/zh.dictionary.ts
Normal file
721
apps/papra-client/src/locales/zh.dictionary.ts
Normal file
@@ -0,0 +1,721 @@
|
||||
import type { TranslationsDictionary } from '@/modules/i18n/locales.types';
|
||||
|
||||
export const translations: Partial<TranslationsDictionary> = {
|
||||
// Authentication
|
||||
|
||||
'auth.request-password-reset.title': '重置您的密码',
|
||||
'auth.request-password-reset.description': '输入您的电子邮件以重置密码。',
|
||||
'auth.request-password-reset.requested': '如果该电子邮件有对应账户,我们将发送重置密码的邮件。',
|
||||
'auth.request-password-reset.back-to-login': '返回登录页面',
|
||||
'auth.request-password-reset.form.email.label': '电子邮件',
|
||||
'auth.request-password-reset.form.email.placeholder': '示例: ada@papra.app',
|
||||
'auth.request-password-reset.form.email.required': '请输入您的电子邮件地址',
|
||||
'auth.request-password-reset.form.email.invalid': '该电子邮件地址无效',
|
||||
'auth.request-password-reset.form.submit': '请求重置密码',
|
||||
|
||||
'auth.reset-password.title': '重置您的密码',
|
||||
'auth.reset-password.description': '输入您的新密码以重置密码。',
|
||||
'auth.reset-password.reset': '您的密码已重置。',
|
||||
'auth.reset-password.back-to-login': '返回登录',
|
||||
'auth.reset-password.form.new-password.label': '新密码',
|
||||
'auth.reset-password.form.new-password.placeholder': '示例: **********',
|
||||
'auth.reset-password.form.new-password.required': '请输入您的新密码',
|
||||
'auth.reset-password.form.new-password.min-length': '密码长度至少为 {{ minLength }} 个字符',
|
||||
'auth.reset-password.form.new-password.max-length': '密码长度不能超过 {{ maxLength }} 个字符',
|
||||
'auth.reset-password.form.submit': '重置密码',
|
||||
|
||||
'auth.email-provider.open': '打开 {{ provider }}',
|
||||
|
||||
'auth.login.title': '登录 Papra',
|
||||
'auth.login.description': '输入您的电子邮件或使用社交账户登录访问您的 Papra 账户。',
|
||||
'auth.login.login-with-provider': '使用 {{ provider }} 登录',
|
||||
'auth.login.no-account': '没有账户?',
|
||||
'auth.login.register': '注册',
|
||||
'auth.login.form.email.label': '电子邮件',
|
||||
'auth.login.form.email.placeholder': '示例: ada@papra.app',
|
||||
'auth.login.form.email.required': '请输入您的电子邮件地址',
|
||||
'auth.login.form.email.invalid': '该电子邮件地址无效',
|
||||
'auth.login.form.password.label': '密码',
|
||||
'auth.login.form.password.placeholder': '设置密码',
|
||||
'auth.login.form.password.required': '请输入您的密码',
|
||||
'auth.login.form.remember-me.label': '记住我',
|
||||
'auth.login.form.forgot-password.label': '忘记密码?',
|
||||
'auth.login.form.submit': '登录',
|
||||
|
||||
'auth.register.title': '注册 Papra',
|
||||
'auth.register.description': '创建一个账户以开始使用 Papra。',
|
||||
'auth.register.register-with-email': '使用电子邮件注册',
|
||||
'auth.register.register-with-provider': '使用 {{ provider }} 注册',
|
||||
'auth.register.providers.google': 'Google',
|
||||
'auth.register.providers.github': 'GitHub',
|
||||
'auth.register.have-account': '已有账户?',
|
||||
'auth.register.login': '登录',
|
||||
'auth.register.registration-disabled.title': '注册被禁用',
|
||||
'auth.register.registration-disabled.description': '当前 Papra 实例已禁用新账户的创建。只有已有账户的用户可以登录。如果您认为这是错误,请联系该实例的管理员。',
|
||||
'auth.register.form.email.label': '电子邮件',
|
||||
'auth.register.form.email.placeholder': '示例: ada@papra.app',
|
||||
'auth.register.form.email.required': '请输入您的电子邮件地址',
|
||||
'auth.register.form.email.invalid': '该电子邮件地址无效',
|
||||
'auth.register.form.password.label': '密码',
|
||||
'auth.register.form.password.placeholder': '设置密码',
|
||||
'auth.register.form.password.required': '请输入您的密码',
|
||||
'auth.register.form.password.min-length': '密码长度至少为 {{ minLength }} 个字符',
|
||||
'auth.register.form.password.max-length': '密码长度不能超过 {{ maxLength }} 个字符',
|
||||
'auth.register.form.name.label': '姓名',
|
||||
'auth.register.form.name.placeholder': '示例: Ada Lovelace',
|
||||
'auth.register.form.name.required': '请输入您的姓名',
|
||||
'auth.register.form.name.max-length': '姓名长度不能超过 {{ maxLength }} 个字符',
|
||||
'auth.register.form.submit': '注册',
|
||||
|
||||
'auth.email-validation-required.title': '验证您的电子邮件',
|
||||
'auth.email-validation-required.description': '一封验证邮件已发送到您的电子邮件地址。请通过点击邮件中的链接来验证您的电子邮件地址。',
|
||||
|
||||
'auth.email-verification.success.title': '电子邮件已验证',
|
||||
'auth.email-verification.success.description': '您的电子邮件已成功验证。您现在可以登录您的账户。',
|
||||
'auth.email-verification.success.login': '前往登录',
|
||||
'auth.email-verification.error.title': '验证失败',
|
||||
'auth.email-verification.error.description': '验证链接已过期或无效。请通过登录请求新的验证邮件。',
|
||||
'auth.email-verification.error.back': '返回登录',
|
||||
|
||||
'auth.legal-links.description': '继续即表示您已了解并同意{{ terms }}和{{ privacy }}。',
|
||||
'auth.legal-links.terms': '服务条款',
|
||||
'auth.legal-links.privacy': '隐私政策',
|
||||
|
||||
'auth.no-auth-provider.title': '无身份验证提供者',
|
||||
'auth.no-auth-provider.description': '此 Papra 实例未启用任何身份验证提供者。请联系该实例的管理员以启用它们。',
|
||||
|
||||
// User settings
|
||||
|
||||
'user.settings.title': '用户设置',
|
||||
'user.settings.description': '在此管理您的账户设置。',
|
||||
|
||||
'user.settings.email.title': '电子邮件地址',
|
||||
'user.settings.email.description': '您的电子邮件地址无法更改。',
|
||||
'user.settings.email.label': '电子邮件地址',
|
||||
|
||||
'user.settings.name.title': '全名',
|
||||
'user.settings.name.description': '您的全名会显示给其他组织成员。',
|
||||
'user.settings.name.label': '全名',
|
||||
'user.settings.name.placeholder': '例如: 张三',
|
||||
'user.settings.name.update': '更新姓名',
|
||||
'user.settings.name.updated': '您的全名已更新',
|
||||
|
||||
'user.settings.logout.title': '登出',
|
||||
'user.settings.logout.description': '从您的账户登出。您可以稍后再次登录。',
|
||||
'user.settings.logout.button': '登出',
|
||||
|
||||
// Organizations
|
||||
|
||||
'organizations.list.title': '您的组织',
|
||||
'organizations.list.description': '组织是一种将您的文档分组并管理访问权限的方式。您可以创建多个组织并邀请您的团队成员进行协作。',
|
||||
'organizations.list.create-new': '创建新组织',
|
||||
'organizations.list.back': '返回组织列表',
|
||||
'organizations.list.deleted.title': '已删除的组织',
|
||||
'organizations.list.deleted.description': '已删除的组织将在 {{ days }} 天内保留,之后将被永久删除。您可以在此期间恢复它们。',
|
||||
'organizations.list.deleted.empty': '没有已删除的组织',
|
||||
'organizations.list.deleted.empty-description': '当您删除一个组织时,它将在此处显示 {{ days }} 天,然后被永久删除。',
|
||||
'organizations.list.deleted.restore': '恢复',
|
||||
'organizations.list.deleted.restore-success': '组织已成功恢复',
|
||||
'organizations.list.deleted.restore-confirm.title': '恢复组织',
|
||||
'organizations.list.deleted.restore-confirm.message': '您确定要恢复此组织吗?它将被移回您的活动组织列表。',
|
||||
'organizations.list.deleted.restore-confirm.confirm-button': '恢复组织',
|
||||
'organizations.list.deleted.deleted-at': '已删除 {{ date }}',
|
||||
'organizations.list.deleted.purge-at': '将于 {{ date }} 被永久删除',
|
||||
'organizations.list.deleted.days-remaining': '(剩余 {{ daysUntilPurge, =1:{daysUntilPurge} 天, {daysUntilPurge} 天 }})',
|
||||
|
||||
'organizations.details.no-documents.title': '没有文档',
|
||||
'organizations.details.no-documents.description': '该组织中尚无文档。您可以开始上传一些文档。',
|
||||
'organizations.details.upload-documents': '上传文档',
|
||||
'organizations.details.documents-count': '共计文档',
|
||||
'organizations.details.total-size': '总大小',
|
||||
'organizations.details.latest-documents': '最新导入的文档',
|
||||
|
||||
'organizations.create.title': '创建新组织',
|
||||
'organizations.create.description': '您的文档将按组织分组。您可以创建多个组织来分隔您的文档,例如,个人和工作文档。',
|
||||
'organizations.create.back': '返回',
|
||||
'organizations.create.error.max-count-reached': '您已达到可创建的组织数量上限,如果需要创建更多组织,请联系支持。',
|
||||
'organizations.create.form.name.label': '组织名称',
|
||||
'organizations.create.form.name.placeholder': '例如: Acme Inc.',
|
||||
'organizations.create.form.name.required': '请输入组织名称',
|
||||
'organizations.create.form.submit': '创建组织',
|
||||
'organizations.create.success': '组织创建成功',
|
||||
|
||||
'organizations.create-first.title': '创建您的组织',
|
||||
'organizations.create-first.description': '您的文档将按组织分组。您可以创建多个组织来分隔您的文档,例如,个人和工作文档。',
|
||||
'organizations.create-first.default-name': '我的组织',
|
||||
'organizations.create-first.user-name': '{{ name }}的组织',
|
||||
|
||||
'organization.settings.title': '组织设置',
|
||||
'organization.settings.page.title': '组织设置',
|
||||
'organization.settings.page.description': '在此管理您的组织设置。',
|
||||
'organization.settings.name.title': '组织名称',
|
||||
'organization.settings.name.update': '更新名称',
|
||||
'organization.settings.name.placeholder': '例如: Acme Inc.',
|
||||
'organization.settings.name.updated': '组织名称已更新',
|
||||
'organization.settings.subscription.title': '订阅',
|
||||
'organization.settings.subscription.description': '管理您的账单、发票和付款方式。',
|
||||
'organization.settings.subscription.manage': '管理订阅',
|
||||
'organization.settings.subscription.error': '获取客户门户 URL 失败',
|
||||
'organization.settings.delete.title': '删除组织',
|
||||
'organization.settings.delete.description': '删除此组织将永久移除与其相关的所有数据。',
|
||||
'organization.settings.delete.confirm.title': '删除组织',
|
||||
'organization.settings.delete.confirm.message': '您确定要删除此组织吗?该组织将被标记为删除,并在 {{ days }} 天后永久移除。在此期间,您可以从您的组织列表中恢复它。所有文档和数据将在此延迟后永久删除。',
|
||||
'organization.settings.delete.confirm.confirm-button': '删除组织',
|
||||
'organization.settings.delete.confirm.cancel-button': '取消',
|
||||
'organization.settings.delete.success': '组织已删除',
|
||||
'organization.settings.delete.only-owner': '只有组织所有者可以删除此组织。',
|
||||
'organization.settings.delete.has-active-subscription': '无法删除有有效订阅的组织,请先取消您的订阅。',
|
||||
|
||||
'organization.usage.page.title': '使用情况',
|
||||
'organization.usage.page.description': '查看您组织的当前使用情况和限制。',
|
||||
'organization.usage.storage.title': '文档存储',
|
||||
'organization.usage.storage.description': '您的文档使用的总存储空间',
|
||||
'organization.usage.intake-emails.title': '接收邮箱',
|
||||
'organization.usage.intake-emails.description': '接收邮箱地址的数量',
|
||||
'organization.usage.members.title': '成员',
|
||||
'organization.usage.members.description': '组织中的成员数量',
|
||||
'organization.usage.unlimited': '无限制',
|
||||
|
||||
'organizations.members.title': '成员',
|
||||
'organizations.members.description': '管理您的组织成员',
|
||||
'organizations.members.invite-member': '邀请成员',
|
||||
'organizations.members.invite-member-disabled-tooltip': '只有管理员或所有者可以邀请成员加入组织',
|
||||
'organizations.members.remove-from-organization': '从组织中移除',
|
||||
'organizations.members.role': '角色',
|
||||
'organizations.members.roles.owner': '所有者',
|
||||
'organizations.members.roles.admin': '管理员',
|
||||
'organizations.members.roles.member': '成员',
|
||||
'organizations.members.delete.confirm.title': '移除成员',
|
||||
'organizations.members.delete.confirm.message': '您确定要将此成员从组织中移除吗?',
|
||||
'organizations.members.delete.confirm.confirm-button': '移除',
|
||||
'organizations.members.delete.confirm.cancel-button': '取消',
|
||||
'organizations.members.delete.success': '成员已从组织中移除',
|
||||
'organizations.members.update-role.success': '成员角色已更新',
|
||||
'organizations.members.table.headers.name': '姓名',
|
||||
'organizations.members.table.headers.email': '电子邮件',
|
||||
'organizations.members.table.headers.role': '角色',
|
||||
'organizations.members.table.headers.created': '创建时间',
|
||||
'organizations.members.table.headers.actions': '操作',
|
||||
|
||||
'organizations.invite-member.title': '邀请成员',
|
||||
'organizations.invite-member.description': '邀请成员加入您的组织',
|
||||
'organizations.invite-member.form.email.label': '电子邮件',
|
||||
'organizations.invite-member.form.email.placeholder': '例如: ada@papra.app',
|
||||
'organizations.invite-member.form.email.required': '请输入有效的电子邮件地址',
|
||||
'organizations.invite-member.form.role.label': '角色',
|
||||
'organizations.invite-member.form.submit': '邀请加入组织',
|
||||
'organizations.invite-member.success.message': '成员已被邀请',
|
||||
'organizations.invite-member.success.description': '该电子邮件已被邀请加入组织。',
|
||||
'organizations.invite-member.error.message': '邀请成员失败',
|
||||
|
||||
'organizations.invitations.title': '邀请',
|
||||
'organizations.invitations.description': '管理您的组织邀请',
|
||||
'organizations.invitations.list.cta': '邀请成员',
|
||||
'organizations.invitations.list.empty.title': '没有待处理的邀请',
|
||||
'organizations.invitations.list.empty.description': '您还没有被邀请加入任何组织。',
|
||||
'organizations.invitations.status.pending': '待处理',
|
||||
'organizations.invitations.status.accepted': '已接受',
|
||||
'organizations.invitations.status.rejected': '已拒绝',
|
||||
'organizations.invitations.status.expired': '已过期',
|
||||
'organizations.invitations.status.cancelled': '已取消',
|
||||
'organizations.invitations.resend': '重新发送邀请',
|
||||
'organizations.invitations.cancel.title': '取消邀请',
|
||||
'organizations.invitations.cancel.description': '您确定要取消此邀请吗?',
|
||||
'organizations.invitations.cancel.confirm': '取消邀请',
|
||||
'organizations.invitations.cancel.cancel': '取消',
|
||||
'organizations.invitations.resend.title': '重新发送邀请',
|
||||
'organizations.invitations.resend.description': '您确定要重新发送此邀请吗?这将向收件人发送一封新电子邮件。',
|
||||
'organizations.invitations.resend.confirm': '重新发送邀请',
|
||||
'organizations.invitations.resend.cancel': '取消',
|
||||
|
||||
'invitations.list.title': '邀请',
|
||||
'invitations.list.description': '管理您的组织邀请',
|
||||
'invitations.list.empty.title': '没有待处理的邀请',
|
||||
'invitations.list.empty.description': '您还没有被邀请加入任何组织。',
|
||||
'invitations.list.headers.organization': '组织',
|
||||
'invitations.list.headers.status': '状态',
|
||||
'invitations.list.headers.created': '创建时间',
|
||||
'invitations.list.headers.actions': '操作',
|
||||
'invitations.list.actions.accept': '接受',
|
||||
'invitations.list.actions.reject': '拒绝',
|
||||
'invitations.list.actions.accept.success.message': '邀请已接受',
|
||||
'invitations.list.actions.accept.success.description': '该邀请已被接受。',
|
||||
'invitations.list.actions.reject.success.message': '邀请已拒绝',
|
||||
'invitations.list.actions.reject.success.description': '该邀请已被拒绝。',
|
||||
|
||||
// Documents
|
||||
|
||||
'documents.list.title': '文档',
|
||||
'documents.list.no-documents.title': '没有文档',
|
||||
'documents.list.no-documents.description': '该组织中尚无文档。您可以开始上传一些文档。',
|
||||
'documents.list.no-results': '未找到文档',
|
||||
'documents.list.table.headers.file-name': '文件名',
|
||||
'documents.list.table.headers.created': '创建时间',
|
||||
'documents.list.table.headers.deleted': '删除时间',
|
||||
'documents.list.table.headers.actions': '操作',
|
||||
'documents.list.table.headers.tags': '标签',
|
||||
|
||||
'documents.tabs.info': '信息',
|
||||
'documents.tabs.content': '内容',
|
||||
'documents.tabs.activity': '活动',
|
||||
'documents.deleted.message': '该文档已被删除,将在 {{ days }} 天内被永久移除。',
|
||||
'documents.actions.download': '下载',
|
||||
'documents.actions.open-in-new-tab': '在新标签页中打开',
|
||||
'documents.actions.restore': '恢复',
|
||||
'documents.actions.delete': '删除',
|
||||
'documents.actions.edit': '编辑',
|
||||
'documents.actions.cancel': '取消',
|
||||
'documents.actions.save': '保存',
|
||||
'documents.actions.saving': '保存中...',
|
||||
'documents.content.alert': '文档内容在上传时自动提取,仅用于搜索和索引。',
|
||||
'documents.content.empty-placeholder': '该文档没有提取的内容,您可以在此手动设置。',
|
||||
'documents.info.id': 'ID',
|
||||
'documents.info.name': '名称',
|
||||
'documents.info.type': '类型',
|
||||
'documents.info.size': '大小',
|
||||
'documents.info.created-at': '创建时间',
|
||||
'documents.info.updated-at': '更新时间',
|
||||
'documents.info.never': '从不',
|
||||
|
||||
'documents.rename.title': '重命名文档',
|
||||
'documents.rename.form.name.label': '名称',
|
||||
'documents.rename.form.name.placeholder': '示例:发票 2024',
|
||||
'documents.rename.form.name.required': '请输入文档名称',
|
||||
'documents.rename.form.name.max-length': '名称必须少于 255 个字符',
|
||||
'documents.rename.form.submit': '重命名文档',
|
||||
'documents.rename.success': '文档重命名成功',
|
||||
'documents.rename.cancel': '取消',
|
||||
|
||||
'import-documents.title.error': '{{ count }} 个文档导入失败',
|
||||
'import-documents.title.success': '{{ count }} 个文档已导入',
|
||||
'import-documents.title.pending': '{{ count }} / {{ total }} 个文档已导入',
|
||||
'import-documents.title.none': '导入文档',
|
||||
'import-documents.no-import-in-progress': '没有正在进行的文档导入',
|
||||
|
||||
'documents.deleted.title': '已删除的文档',
|
||||
'documents.deleted.empty.title': '没有已删除的文档',
|
||||
'documents.deleted.empty.description': '您没有已删除的文档。被删除的文档将在 {{ days }} 天内移至回收站。',
|
||||
'documents.deleted.retention-notice': '所有已删除的文档将在回收站中保存 {{ days }} 天。超过此期限,文档将被永久删除,且无法恢复。',
|
||||
'documents.deleted.deleted-at': '删除时间',
|
||||
'documents.deleted.restoring': '恢复中...',
|
||||
'documents.deleted.deleting': '删除中...',
|
||||
|
||||
'documents.preview.unknown-file-type': '此文件类型暂无预览',
|
||||
'documents.preview.binary-file': '该文件似乎是二进制文件,无法以文本形式显示',
|
||||
|
||||
'trash.delete-all.button': '全部删除',
|
||||
'trash.delete-all.confirm.title': '永久删除所有文档?',
|
||||
'trash.delete-all.confirm.description': '您确定要永久删除回收站中的所有文档吗?此操作无法撤销。',
|
||||
'trash.delete-all.confirm.label': '删除',
|
||||
'trash.delete-all.confirm.cancel': '取消',
|
||||
'trash.delete.button': '删除',
|
||||
'trash.delete.confirm.title': '永久删除文档?',
|
||||
'trash.delete.confirm.description': '您确定要永久删除回收站中的此文档吗?此操作无法撤销。',
|
||||
'trash.delete.confirm.label': '删除',
|
||||
'trash.delete.confirm.cancel': '取消',
|
||||
'trash.deleted.success.title': '文档已删除',
|
||||
'trash.deleted.success.description': '该文档已被永久删除。',
|
||||
|
||||
'activity.document.created': '文档已创建',
|
||||
'activity.document.updated.single': '{{ field }} 已更新',
|
||||
'activity.document.updated.multiple': '{{ fields }} 已更新',
|
||||
'activity.document.updated': '文档已更新',
|
||||
'activity.document.deleted': '文档已被删除',
|
||||
'activity.document.restored': '文档已恢复',
|
||||
'activity.document.tagged': '已添加标签 {{ tag }}',
|
||||
'activity.document.untagged': '已移除标签 {{ tag }}',
|
||||
|
||||
'activity.document.user.name': '由 {{ name }}',
|
||||
|
||||
'activity.load-more': '加载更多',
|
||||
'activity.no-more-activities': '该文档没有更多活动记录',
|
||||
|
||||
// Tags
|
||||
|
||||
'tags.no-tags.title': '暂无标签',
|
||||
'tags.no-tags.description': '该组织尚无标签。标签用于对文档进行分类,便于查找和组织。',
|
||||
'tags.no-tags.create-tag': '创建标签',
|
||||
|
||||
'tags.title': '文档标签',
|
||||
'tags.description': '标签用于对文档进行分类,便于查找和组织。',
|
||||
'tags.create': '创建标签',
|
||||
'tags.update': '更新标签',
|
||||
'tags.delete': '删除标签',
|
||||
'tags.delete.confirm.title': '删除标签',
|
||||
'tags.delete.confirm.message': '确定要删除此标签吗?删除后该标签将从所有文档中移除。',
|
||||
'tags.delete.confirm.confirm-button': '删除',
|
||||
'tags.delete.confirm.cancel-button': '取消',
|
||||
'tags.delete.success': '标签已删除',
|
||||
'tags.create.success': '标签 "{{ name }}" 创建成功。',
|
||||
'tags.update.success': '标签 "{{ name }}" 更新成功。',
|
||||
'tags.form.name.label': '名称',
|
||||
'tags.form.name.placeholder': '例如:合同',
|
||||
'tags.form.name.required': '请输入标签名称',
|
||||
'tags.form.name.max-length': '标签名称必须少于 64 个字符',
|
||||
'tags.form.color.label': '颜色',
|
||||
'tags.form.color.required': '请选择颜色',
|
||||
'tags.form.color.invalid': '十六进制颜色格式不正确。',
|
||||
'tags.form.description.label': '描述',
|
||||
'tags.form.description.optional': '(可选)',
|
||||
'tags.form.description.placeholder': '例如:公司签署的所有合同',
|
||||
'tags.form.description.max-length': '描述必须少于 256 个字符',
|
||||
'tags.form.no-description': '无描述',
|
||||
'tags.table.headers.tag': '标签',
|
||||
'tags.table.headers.description': '描述',
|
||||
'tags.table.headers.documents': '文档',
|
||||
'tags.table.headers.created': '创建时间',
|
||||
'tags.table.headers.actions': '操作',
|
||||
|
||||
// Tagging rules
|
||||
|
||||
'tagging-rules.field.name': '文档名称',
|
||||
'tagging-rules.field.content': '文档内容',
|
||||
'tagging-rules.operator.equals': '等于',
|
||||
'tagging-rules.operator.not-equals': '不等于',
|
||||
'tagging-rules.operator.contains': '包含',
|
||||
'tagging-rules.operator.not-contains': '不包含',
|
||||
'tagging-rules.operator.starts-with': '开始于',
|
||||
'tagging-rules.operator.ends-with': '结束于',
|
||||
'tagging-rules.list.title': '标签规则',
|
||||
'tagging-rules.list.description': '管理组织的标签规则,根据您定义的条件自动为文档打标签。',
|
||||
'tagging-rules.list.demo-warning': '注意:此为演示环境(无服务器),标签规则不会应用于新添加的文档。',
|
||||
'tagging-rules.list.no-tagging-rules.title': '暂无标签规则',
|
||||
'tagging-rules.list.no-tagging-rules.description': '创建标签规则,根据设定条件自动为添加的文档打标签。',
|
||||
'tagging-rules.list.no-tagging-rules.create-tagging-rule': '创建标签规则',
|
||||
'tagging-rules.list.card.no-conditions': '无条件',
|
||||
'tagging-rules.list.card.one-condition': '1 条条件',
|
||||
'tagging-rules.list.card.conditions': '{{ count }} 条条件',
|
||||
'tagging-rules.list.card.delete': '删除规则',
|
||||
'tagging-rules.list.card.edit': '编辑规则',
|
||||
'tagging-rules.create.title': '创建标签规则',
|
||||
'tagging-rules.create.success': '标签规则创建成功',
|
||||
'tagging-rules.create.error': '创建标签规则失败',
|
||||
'tagging-rules.create.submit': '创建规则',
|
||||
'tagging-rules.form.name.label': '名称',
|
||||
'tagging-rules.form.name.placeholder': '例如:为发票打标签',
|
||||
'tagging-rules.form.name.min-length': '请输入规则名称',
|
||||
'tagging-rules.form.name.max-length': '名称必须少于 64 个字符',
|
||||
'tagging-rules.form.description.label': '描述',
|
||||
'tagging-rules.form.description.placeholder': '例如:名称中包含 \'invoice\' 的文档将被打标签',
|
||||
'tagging-rules.form.description.max-length': '描述必须少于 256 个字符',
|
||||
'tagging-rules.form.conditions.label': '条件',
|
||||
'tagging-rules.form.conditions.description': '定义规则适用的条件。若无条件,规则将应用于所有文档',
|
||||
'tagging-rules.form.conditions.add-condition': '添加条件',
|
||||
'tagging-rules.form.conditions.connector.when': '当',
|
||||
'tagging-rules.form.conditions.connector.and': '且',
|
||||
'tagging-rules.form.conditions.connector.or': '或',
|
||||
'tagging-rules.condition-match-mode.all': '所有条件都需匹配',
|
||||
'tagging-rules.condition-match-mode.any': '任一条件匹配即可',
|
||||
'tagging-rules.form.conditions.no-conditions.title': '无条件',
|
||||
'tagging-rules.form.conditions.no-conditions.description': '您未为该规则添加条件。此规则将对所有文档应用其标签。',
|
||||
'tagging-rules.form.conditions.no-conditions.confirm': '在无条件下应用规则',
|
||||
'tagging-rules.form.conditions.no-conditions.cancel': '取消',
|
||||
'tagging-rules.form.conditions.value.placeholder': '例如:invoice',
|
||||
'tagging-rules.form.conditions.value.min-length': '请输入条件值',
|
||||
'tagging-rules.form.tags.label': '标签',
|
||||
'tagging-rules.form.tags.description': '选择要应用于匹配条件的文档的标签',
|
||||
'tagging-rules.form.tags.min-length': '至少需要选择一个标签',
|
||||
'tagging-rules.form.tags.add-tag': '创建标签',
|
||||
'tagging-rules.form.submit': '创建规则',
|
||||
'tagging-rules.update.title': '更新标签规则',
|
||||
'tagging-rules.update.error': '更新标签规则失败',
|
||||
'tagging-rules.update.submit': '更新规则',
|
||||
'tagging-rules.update.cancel': '取消',
|
||||
'tagging-rules.apply.button': '应用于现有文档',
|
||||
'tagging-rules.apply.confirm.title': '将规则应用于现有文档?',
|
||||
'tagging-rules.apply.confirm.description': '这将检查组织内的所有现有文档,并对匹配条件的文档应用标签。处理将在后台进行。',
|
||||
'tagging-rules.apply.confirm.button': '应用规则',
|
||||
'tagging-rules.apply.success': '规则应用已在后台启动',
|
||||
'tagging-rules.apply.error': '启动规则应用失败',
|
||||
'tagging-rules.apply.processing': '开始中...',
|
||||
|
||||
// Intake emails
|
||||
|
||||
'intake-emails.title': '接收邮箱',
|
||||
'intake-emails.description': '接收邮箱地址用于将电子邮件自动导入到 Papra。只需将邮件转发至接收地址,其附件将被添加到组织的文档中。',
|
||||
'intake-emails.disabled.title': '接收邮箱已禁用',
|
||||
'intake-emails.disabled.description': '此实例已禁用接收邮箱。请联系管理员以启用。更多信息请参阅 {{ documentation }}。',
|
||||
'intake-emails.disabled.documentation': '文档',
|
||||
'intake-emails.info': '只有来自允许来源且已启用的接收邮箱的邮件会被处理。您可以随时启用或禁用接收邮箱。',
|
||||
'intake-emails.empty.title': '暂无接收邮箱',
|
||||
'intake-emails.empty.description': '生成接收地址以便轻松导入邮件附件。',
|
||||
'intake-emails.empty.generate': '生成接收邮箱',
|
||||
'intake-emails.count': '组织共有 {{ count }} 个接收邮箱',
|
||||
'intake-emails.new': '新建接收邮箱',
|
||||
'intake-emails.disabled-label': '(已禁用)',
|
||||
'intake-emails.no-origins': '无允许的发件来源',
|
||||
'intake-emails.allowed-origins': '允许来自 {{ count }} 个地址',
|
||||
'intake-emails.actions.enable': '启用',
|
||||
'intake-emails.actions.disable': '禁用',
|
||||
'intake-emails.actions.manage-origins': '管理来源地址',
|
||||
'intake-emails.actions.delete': '删除',
|
||||
'intake-emails.delete.confirm.title': '删除接收邮箱?',
|
||||
'intake-emails.delete.confirm.message': '确定要删除此接收邮箱吗?此操作不可撤销。',
|
||||
'intake-emails.delete.confirm.confirm-button': '删除接收邮箱',
|
||||
'intake-emails.delete.confirm.cancel-button': '取消',
|
||||
'intake-emails.delete.success': '接收邮箱已删除',
|
||||
'intake-emails.create.success': '接收邮箱已创建',
|
||||
'intake-emails.update.success.enabled': '接收邮箱已启用',
|
||||
'intake-emails.update.success.disabled': '接收邮箱已禁用',
|
||||
'intake-emails.allowed-origins.title': '允许的来源',
|
||||
'intake-emails.allowed-origins.description': '只有来自这些来源并发送到 {{ email }} 的邮件会被处理。若未指定来源,所有邮件将被丢弃。',
|
||||
'intake-emails.allowed-origins.add.label': '添加允许的来源邮箱',
|
||||
'intake-emails.allowed-origins.add.placeholder': '例如:ada@papra.app',
|
||||
'intake-emails.allowed-origins.add.button': '添加',
|
||||
'intake-emails.allowed-origins.add.error.exists': '该邮箱已在此接收邮箱的允许来源列表中',
|
||||
|
||||
// API keys
|
||||
|
||||
'api-keys.permissions.select-all': '全选',
|
||||
'api-keys.permissions.deselect-all': '取消全选',
|
||||
'api-keys.permissions.organizations.title': '组织',
|
||||
'api-keys.permissions.organizations.organizations:create': '创建组织',
|
||||
'api-keys.permissions.organizations.organizations:read': '读取组织',
|
||||
'api-keys.permissions.organizations.organizations:update': '更新组织',
|
||||
'api-keys.permissions.organizations.organizations:delete': '删除组织',
|
||||
'api-keys.permissions.documents.title': '文档',
|
||||
'api-keys.permissions.documents.documents:create': '创建文档',
|
||||
'api-keys.permissions.documents.documents:read': '读取文档',
|
||||
'api-keys.permissions.documents.documents:update': '更新文档',
|
||||
'api-keys.permissions.documents.documents:delete': '删除文档',
|
||||
'api-keys.permissions.tags.title': '标签',
|
||||
'api-keys.permissions.tags.tags:create': '创建标签',
|
||||
'api-keys.permissions.tags.tags:read': '读取标签',
|
||||
'api-keys.permissions.tags.tags:update': '更新标签',
|
||||
'api-keys.permissions.tags.tags:delete': '删除标签',
|
||||
'api-keys.create.title': '创建 API 密钥',
|
||||
'api-keys.create.description': '创建新的 API 密钥以访问 Papra API。',
|
||||
'api-keys.create.success': 'API 密钥创建成功。',
|
||||
'api-keys.create.back': '返回 API 密钥',
|
||||
'api-keys.create.form.name.label': '名称',
|
||||
'api-keys.create.form.name.placeholder': '例如:我的 API 密钥',
|
||||
'api-keys.create.form.name.required': '请输入 API 密钥名称',
|
||||
'api-keys.create.form.permissions.label': '权限',
|
||||
'api-keys.create.form.permissions.required': '请至少选择一个权限',
|
||||
'api-keys.create.form.submit': '创建 API 密钥',
|
||||
'api-keys.create.created.title': 'API 密钥已创建',
|
||||
'api-keys.create.created.description': 'API 密钥已创建。请妥善保存,后续将无法再次查看。',
|
||||
'api-keys.list.title': 'API 密钥',
|
||||
'api-keys.list.description': '在此管理您的 API 密钥。',
|
||||
'api-keys.list.create': '创建 API 密钥',
|
||||
'api-keys.list.empty.title': '暂无 API 密钥',
|
||||
'api-keys.list.empty.description': '创建 API 密钥以访问 Papra API。',
|
||||
'api-keys.list.card.last-used': '最后使用',
|
||||
'api-keys.list.card.never': '从未',
|
||||
'api-keys.list.card.created': '创建时间',
|
||||
'api-keys.delete.success': 'API 密钥已删除',
|
||||
'api-keys.delete.confirm.title': '删除 API 密钥',
|
||||
'api-keys.delete.confirm.message': '确定要删除此 API 密钥吗?此操作不可撤销。',
|
||||
'api-keys.delete.confirm.confirm-button': '删除',
|
||||
'api-keys.delete.confirm.cancel-button': '取消',
|
||||
|
||||
// Webhooks
|
||||
|
||||
'webhooks.list.title': 'Webhook',
|
||||
'webhooks.list.description': '管理组织的 Webhook',
|
||||
'webhooks.list.empty.title': '暂无 Webhook',
|
||||
'webhooks.list.empty.description': '创建第一个 Webhook 开始接收事件',
|
||||
'webhooks.list.create': '创建 Webhook',
|
||||
'webhooks.list.card.last-triggered': '最近触发',
|
||||
'webhooks.list.card.never': '从未',
|
||||
'webhooks.list.card.created': '创建时间',
|
||||
'webhooks.create.title': '创建 Webhook',
|
||||
'webhooks.create.description': '创建新的 Webhook 以接收事件',
|
||||
'webhooks.create.success': 'Webhook 创建成功',
|
||||
'webhooks.create.back': '返回',
|
||||
'webhooks.create.form.submit': '创建 Webhook',
|
||||
'webhooks.create.form.name.label': 'Webhook 名称',
|
||||
'webhooks.create.form.name.placeholder': '请输入 Webhook 名称',
|
||||
'webhooks.create.form.name.required': '名称为必填项',
|
||||
'webhooks.create.form.url.label': 'Webhook URL',
|
||||
'webhooks.create.form.url.placeholder': '请输入 Webhook URL',
|
||||
'webhooks.create.form.url.required': 'URL 为必填项',
|
||||
'webhooks.create.form.url.invalid': 'URL 无效',
|
||||
'webhooks.create.form.secret.label': '密钥',
|
||||
'webhooks.create.form.secret.placeholder': '请输入 Webhook 密钥',
|
||||
'webhooks.create.form.events.label': '事件',
|
||||
'webhooks.create.form.events.required': '至少选择一个事件',
|
||||
'webhooks.update.title': '编辑 Webhook',
|
||||
'webhooks.update.description': '更新 Webhook 信息',
|
||||
'webhooks.update.success': 'Webhook 更新成功',
|
||||
'webhooks.update.submit': '更新 Webhook',
|
||||
'webhooks.update.cancel': '取消',
|
||||
'webhooks.update.form.secret.placeholder': '输入新密钥',
|
||||
'webhooks.update.form.secret.placeholder-redacted': '[已隐藏的密钥]',
|
||||
'webhooks.update.form.rotate-secret.button': '轮换密钥',
|
||||
'webhooks.delete.success': 'Webhook 已删除',
|
||||
'webhooks.delete.confirm.title': '删除 Webhook',
|
||||
'webhooks.delete.confirm.message': '确定要删除此 Webhook 吗?',
|
||||
'webhooks.delete.confirm.confirm-button': '删除',
|
||||
'webhooks.delete.confirm.cancel-button': '取消',
|
||||
|
||||
'webhooks.events.documents.title': '文档事件',
|
||||
'webhooks.events.documents.document:created.description': '文档已创建',
|
||||
'webhooks.events.documents.document:deleted.description': '文档已删除',
|
||||
'webhooks.events.documents.document:updated.description': '文档已更新',
|
||||
'webhooks.events.documents.document:tag:added.description': '文档已添加标签',
|
||||
'webhooks.events.documents.document:tag:removed.description': '文档已移除标签',
|
||||
|
||||
// Navigation
|
||||
|
||||
'layout.menu.home': '首页',
|
||||
'layout.menu.documents': '文档',
|
||||
'layout.menu.tags': '标签',
|
||||
'layout.menu.tagging-rules': '标签规则',
|
||||
'layout.menu.deleted-documents': '已删除文档',
|
||||
'layout.menu.organization-settings': '设置',
|
||||
'layout.menu.api-keys': 'API 密钥',
|
||||
'layout.menu.settings': '设置',
|
||||
'layout.menu.account': '账户',
|
||||
'layout.menu.general-settings': '常规设置',
|
||||
'layout.menu.usage': '使用情况',
|
||||
'layout.menu.intake-emails': '接收邮箱',
|
||||
'layout.menu.webhooks': 'Webhook',
|
||||
'layout.menu.members': '成员',
|
||||
'layout.menu.invitations': '邀请',
|
||||
|
||||
'layout.upgrade-cta.title': '需要更多空间?',
|
||||
'layout.upgrade-cta.description': '获得 10 倍存储和团队协作功能',
|
||||
'layout.upgrade-cta.button': '立即升级',
|
||||
|
||||
'layout.theme.light': '浅色模式',
|
||||
'layout.theme.dark': '深色模式',
|
||||
'layout.theme.system': '跟随系统',
|
||||
|
||||
'layout.search.placeholder': '搜索...',
|
||||
'layout.menu.import-document': '导入文档',
|
||||
|
||||
'user-menu.account-settings': '账户设置',
|
||||
'user-menu.api-keys': 'API 密钥',
|
||||
'user-menu.invitations': '邀请',
|
||||
'user-menu.language': '语言',
|
||||
'user-menu.logout': '登出',
|
||||
|
||||
// Command palette
|
||||
|
||||
'command-palette.search.placeholder': '搜索命令或文档',
|
||||
'command-palette.no-results': '未找到结果',
|
||||
'command-palette.sections.documents': '文档',
|
||||
'command-palette.sections.theme': '主题',
|
||||
|
||||
// API errors
|
||||
|
||||
'api-errors.api.timeout': '请求耗时过长已超时。请重试。',
|
||||
'api-errors.document.already_exists': '文档已存在',
|
||||
'api-errors.document.size_too_large': '文件大小过大',
|
||||
'api-errors.intake-emails.already_exists': '具有此地址的接收邮箱已存在。',
|
||||
'api-errors.intake_email.limit_reached': '该组织的接收邮箱数量已达到上限。请升级您的方案以创建更多接收邮箱。',
|
||||
'api-errors.user.max_organization_count_reached': '您已达到可创建的组织数量上限,如需创建更多,请联系支持。',
|
||||
'api-errors.default': '处理请求时发生错误。',
|
||||
'api-errors.organization.invitation_already_exists': '此邮箱的邀请在该组织中已存在。',
|
||||
'api-errors.user.already_in_organization': '该用户已在此组织中。',
|
||||
'api-errors.user.organization_invitation_limit_reached': '今日邀请次数已达上限,请明天再试。',
|
||||
'api-errors.demo.not_available': '此功能在演示环境中不可用',
|
||||
'api-errors.tags.already_exists': '该组织已存在同名标签',
|
||||
'api-errors.internal.error': '处理请求时发生错误。请稍后重试。',
|
||||
'api-errors.auth.invalid_origin': '应用来源无效。如果您自托管 Papra,请确保 APP_BASE_URL 环境变量与当前 URL 匹配。详情见 https://docs.papra.app/resources/troubleshooting/#invalid-application-origin',
|
||||
'api-errors.organization.max_members_count_reached': '该组织的成员和待处理邀请数量已达上限。请升级方案以添加更多成员。',
|
||||
'api-errors.organization.has_active_subscription': '无法删除有有效订阅的组织。请先通过上方“管理订阅”取消订阅。',
|
||||
// Better auth api errors
|
||||
'api-errors.USER_NOT_FOUND': '未找到用户',
|
||||
'api-errors.FAILED_TO_CREATE_USER': '创建用户失败',
|
||||
'api-errors.FAILED_TO_CREATE_SESSION': '创建会话失败',
|
||||
'api-errors.FAILED_TO_UPDATE_USER': '更新用户失败',
|
||||
'api-errors.FAILED_TO_GET_SESSION': '获取会话失败',
|
||||
'api-errors.INVALID_PASSWORD': '密码无效',
|
||||
'api-errors.INVALID_EMAIL': '电子邮件无效',
|
||||
'api-errors.INVALID_EMAIL_OR_PASSWORD': '邮箱或密码不正确,或账户不存在。',
|
||||
'api-errors.SOCIAL_ACCOUNT_ALREADY_LINKED': '社交账户已关联',
|
||||
'api-errors.PROVIDER_NOT_FOUND': '未找到提供者',
|
||||
'api-errors.INVALID_TOKEN': '令牌无效',
|
||||
'api-errors.ID_TOKEN_NOT_SUPPORTED': '不支持 ID 令牌',
|
||||
'api-errors.FAILED_TO_GET_USER_INFO': '获取用户信息失败',
|
||||
'api-errors.USER_EMAIL_NOT_FOUND': '未找到用户邮箱',
|
||||
'api-errors.EMAIL_NOT_VERIFIED': '邮箱未验证',
|
||||
'api-errors.PASSWORD_TOO_SHORT': '密码太短',
|
||||
'api-errors.PASSWORD_TOO_LONG': '密码太长',
|
||||
'api-errors.USER_ALREADY_EXISTS': '该邮箱的用户已存在',
|
||||
'api-errors.EMAIL_CAN_NOT_BE_UPDATED': '邮箱无法更新',
|
||||
'api-errors.CREDENTIAL_ACCOUNT_NOT_FOUND': '未找到凭证账户',
|
||||
'api-errors.SESSION_EXPIRED': '会话已过期',
|
||||
'api-errors.FAILED_TO_UNLINK_LAST_ACCOUNT': '无法解除最后一个账户的关联',
|
||||
'api-errors.ACCOUNT_NOT_FOUND': '账户未找到',
|
||||
'api-errors.USER_ALREADY_HAS_PASSWORD': '用户已设置密码',
|
||||
|
||||
// Not found
|
||||
|
||||
'not-found.title': '404 - 未找到',
|
||||
'not-found.description': '抱歉,您访问的页面不存在。请检查 URL 并重试。',
|
||||
'not-found.back-to-home': '返回首页',
|
||||
|
||||
// Demo
|
||||
|
||||
'demo.popup.description': '这是一个演示环境,所有数据保存在浏览器本地存储。',
|
||||
'demo.popup.discord': '加入 {{ discordLink }} 获取支持、建议功能或聊天。',
|
||||
'demo.popup.discord-link-label': 'Discord 服务器',
|
||||
'demo.popup.reset': '重置演示数据',
|
||||
'demo.popup.hide': '隐藏',
|
||||
|
||||
// Color picker
|
||||
|
||||
'color-picker.hue': '色相',
|
||||
'color-picker.saturation': '饱和度',
|
||||
'color-picker.lightness': '亮度',
|
||||
'color-picker.select-color': '选择颜色',
|
||||
'color-picker.select-a-color': '选择一个颜色',
|
||||
|
||||
// Subscriptions
|
||||
|
||||
'subscriptions.checkout-success.title': '支付成功!',
|
||||
'subscriptions.checkout-success.description': '您的订阅已成功激活。',
|
||||
'subscriptions.checkout-success.thank-you': '感谢升级到 Papra Plus。您现在可以使用所有高级功能。',
|
||||
'subscriptions.checkout-success.go-to-organizations': '前往组织',
|
||||
'subscriptions.checkout-success.redirecting': '将在 {{ count }} 秒后跳转...',
|
||||
|
||||
'subscriptions.checkout-cancel.title': '支付已取消',
|
||||
'subscriptions.checkout-cancel.description': '订阅升级已取消。',
|
||||
'subscriptions.checkout-cancel.no-charges': '您的账户未被扣款。您可以随时重试。',
|
||||
'subscriptions.checkout-cancel.back-to-organizations': '返回组织',
|
||||
'subscriptions.checkout-cancel.need-help': '需要帮助?',
|
||||
'subscriptions.checkout-cancel.contact-support': '联系客服',
|
||||
|
||||
'subscriptions.upgrade-dialog.title': '升级此组织',
|
||||
'subscriptions.upgrade-dialog.description': '为组织解锁强大功能',
|
||||
'subscriptions.upgrade-dialog.contact-us': '联系我们',
|
||||
'subscriptions.upgrade-dialog.enterprise-plans': '如需定制企业方案请联系。',
|
||||
'subscriptions.upgrade-dialog.current-plan': '当前方案',
|
||||
'subscriptions.upgrade-dialog.recommended': '推荐',
|
||||
'subscriptions.upgrade-dialog.per-month': '/月',
|
||||
'subscriptions.upgrade-dialog.billed-annually': '按年计费:${{ price }}',
|
||||
'subscriptions.upgrade-dialog.upgrade-now': '立即升级',
|
||||
'subscriptions.upgrade-dialog.promo-banner.title': '限时优惠',
|
||||
'subscriptions.upgrade-dialog.promo-banner.description': '作为早期采用者,组织可永久获得所有方案 {{ percent }}% 折扣!优惠于 {{ days, >1:{days} 天, =1:1 天, 少于 1 天 }} 到期。',
|
||||
|
||||
'subscriptions.plan.free.name': '免费方案',
|
||||
'subscriptions.plan.plus.name': 'Plus',
|
||||
'subscriptions.plan.pro.name': 'Pro',
|
||||
|
||||
'subscriptions.features.storage-size': '文档存储空间',
|
||||
'subscriptions.features.members': '组织成员',
|
||||
'subscriptions.features.members-count': '{{ count }} 名成员',
|
||||
'subscriptions.features.email-intakes': '接收邮箱',
|
||||
'subscriptions.features.email-intakes-count-singular': '{{ count }} 个地址',
|
||||
'subscriptions.features.email-intakes-count-plural': '{{ count }} 个地址',
|
||||
'subscriptions.features.max-upload-size': '最大上传文件大小',
|
||||
'subscriptions.features.support': '支持',
|
||||
'subscriptions.features.support-community': '社区支持',
|
||||
'subscriptions.features.support-email': '邮件支持',
|
||||
'subscriptions.features.support-priority': '优先支持',
|
||||
|
||||
'subscriptions.billing-interval.monthly': '按月',
|
||||
'subscriptions.billing-interval.annual': '按年',
|
||||
|
||||
'subscriptions.usage-warning.message': '您的文档存储已使用 {{ percent }}%,考虑升级方案以获得更多空间。',
|
||||
'subscriptions.usage-warning.upgrade-button': '升级方案',
|
||||
|
||||
// Common / Shared
|
||||
|
||||
'common.confirm-modal.type-to-confirm': '输入 "{{ text }}" 以确认',
|
||||
'common.tables.rows-per-page': '每页行数',
|
||||
'common.tables.pagination-info': '第 {{ currentPage }} 页,共 {{ totalPages }} 页',
|
||||
};
|
||||
39
apps/papra-client/src/modules/admin/admin.routes.tsx
Normal file
39
apps/papra-client/src/modules/admin/admin.routes.tsx
Normal file
@@ -0,0 +1,39 @@
|
||||
import type { RouteDefinition } from '@solidjs/router';
|
||||
import { Navigate } from '@solidjs/router';
|
||||
import { lazy } from 'solid-js';
|
||||
import { NotFoundPage } from '../shared/pages/not-found.page';
|
||||
|
||||
export const adminRoutes: RouteDefinition = {
|
||||
path: '/admin/*',
|
||||
component: lazy(() => import('./layouts/admin.layout')),
|
||||
children: [
|
||||
{
|
||||
path: '/',
|
||||
component: () => <Navigate href="/admin/analytics" />,
|
||||
},
|
||||
{
|
||||
path: '/users',
|
||||
component: lazy(() => import('./users/pages/list-users.page')),
|
||||
},
|
||||
{
|
||||
path: '/users/:userId',
|
||||
component: lazy(() => import('./users/pages/user-detail.page')),
|
||||
},
|
||||
{
|
||||
path: '/analytics',
|
||||
component: lazy(() => import('./analytics/pages/analytics.page')),
|
||||
},
|
||||
{
|
||||
path: '/organizations',
|
||||
component: lazy(() => import('./organizations/pages/list-organizations.page')),
|
||||
},
|
||||
{
|
||||
path: '/organizations/:organizationId',
|
||||
component: lazy(() => import('./organizations/pages/organization-detail.page')),
|
||||
},
|
||||
{
|
||||
path: '/*404',
|
||||
component: NotFoundPage,
|
||||
},
|
||||
],
|
||||
};
|
||||
@@ -0,0 +1,35 @@
|
||||
import { apiClient } from '@/modules/shared/http/api-client';
|
||||
|
||||
export async function getUserCount() {
|
||||
const { userCount } = await apiClient<{ userCount: number }>({
|
||||
method: 'GET',
|
||||
path: '/api/admin/users/count',
|
||||
});
|
||||
|
||||
return { userCount };
|
||||
}
|
||||
|
||||
export async function getDocumentStats() {
|
||||
const stats = await apiClient<{
|
||||
documentsCount: number;
|
||||
documentsSize: number;
|
||||
deletedDocumentsCount: number;
|
||||
deletedDocumentsSize: number;
|
||||
totalDocumentsCount: number;
|
||||
totalDocumentsSize: number;
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: '/api/admin/documents/stats',
|
||||
});
|
||||
|
||||
return stats;
|
||||
}
|
||||
|
||||
export async function getOrganizationCount() {
|
||||
const { organizationCount } = await apiClient<{ organizationCount: number }>({
|
||||
method: 'GET',
|
||||
path: '/api/admin/organizations/count',
|
||||
});
|
||||
|
||||
return { organizationCount };
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { formatBytes } from '@corentinth/chisels';
|
||||
import { useQuery } from '@tanstack/solid-query';
|
||||
import { Suspense } from 'solid-js';
|
||||
import { getDocumentStats, getOrganizationCount, getUserCount } from '../analytics.services';
|
||||
|
||||
const AnalyticsCard: Component<{
|
||||
icon: string;
|
||||
title: string;
|
||||
value: () => number | undefined;
|
||||
formatValue?: (value: number) => string;
|
||||
}> = (props) => {
|
||||
const formattedValue = () => {
|
||||
const value = props.value();
|
||||
if (value === undefined) {
|
||||
return '';
|
||||
}
|
||||
return props.formatValue ? props.formatValue(value) : value.toLocaleString();
|
||||
};
|
||||
|
||||
return (
|
||||
<div class="bg-card rounded-lg px-6 py-4 border">
|
||||
<div class="flex flex-row items-center mb-4 gap-2">
|
||||
<div class="flex items-center justify-center size-6 bg-muted rounded">
|
||||
<div class={`${props.icon} text-muted-foreground size-4`} />
|
||||
</div>
|
||||
<h2 class="text-sm font-light">{props.title}</h2>
|
||||
</div>
|
||||
|
||||
<Suspense fallback={<div class="h-8 w-16 animate-pulse bg-muted rounded" />}>
|
||||
<div class="text-3xl font-light">
|
||||
{formattedValue()}
|
||||
</div>
|
||||
</Suspense>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export const AdminAnalyticsPage: Component = () => {
|
||||
const userCountQuery = useQuery(() => ({
|
||||
queryKey: ['admin', 'users', 'count'],
|
||||
queryFn: getUserCount,
|
||||
}));
|
||||
|
||||
const documentStatsQuery = useQuery(() => ({
|
||||
queryKey: ['admin', 'documents', 'stats'],
|
||||
queryFn: getDocumentStats,
|
||||
}));
|
||||
|
||||
const organizationCountQuery = useQuery(() => ({
|
||||
queryKey: ['admin', 'organizations', 'count'],
|
||||
queryFn: getOrganizationCount,
|
||||
}));
|
||||
|
||||
return (
|
||||
<div class="px-6 pt-4">
|
||||
<h1 class="text-2xl font-medium mb-1">Dashboard</h1>
|
||||
<p class="text-muted-foreground">Insights and analytics about Papra usage.</p>
|
||||
|
||||
<div class="mt-6 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
||||
<AnalyticsCard
|
||||
icon="i-tabler-users"
|
||||
title="User count"
|
||||
value={() => userCountQuery.data?.userCount}
|
||||
/>
|
||||
|
||||
<AnalyticsCard
|
||||
icon="i-tabler-building"
|
||||
title="Organization count"
|
||||
value={() => organizationCountQuery.data?.organizationCount}
|
||||
/>
|
||||
|
||||
<AnalyticsCard
|
||||
icon="i-tabler-file"
|
||||
title="Document count"
|
||||
value={() => documentStatsQuery.data?.documentsCount}
|
||||
/>
|
||||
|
||||
<AnalyticsCard
|
||||
icon="i-tabler-database"
|
||||
title="Documents storage"
|
||||
value={() => documentStatsQuery.data?.documentsSize}
|
||||
formatValue={bytes => formatBytes({ bytes, base: 1000 })}
|
||||
/>
|
||||
|
||||
<AnalyticsCard
|
||||
icon="i-tabler-file-x"
|
||||
title="Deleted documents"
|
||||
value={() => documentStatsQuery.data?.deletedDocumentsCount}
|
||||
/>
|
||||
|
||||
<AnalyticsCard
|
||||
icon="i-tabler-database-x"
|
||||
title="Deleted storage"
|
||||
value={() => documentStatsQuery.data?.deletedDocumentsSize}
|
||||
formatValue={bytes => formatBytes({ bytes, base: 1000 })}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AdminAnalyticsPage;
|
||||
97
apps/papra-client/src/modules/admin/layouts/admin.layout.tsx
Normal file
97
apps/papra-client/src/modules/admin/layouts/admin.layout.tsx
Normal file
@@ -0,0 +1,97 @@
|
||||
import type { ParentComponent } from 'solid-js';
|
||||
import { A, Navigate } from '@solidjs/router';
|
||||
import { Show } from 'solid-js';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { Sheet, SheetContent, SheetTrigger } from '@/modules/ui/components/sheet';
|
||||
import { SideNav } from '@/modules/ui/layouts/sidenav.layout';
|
||||
import { useCurrentUser } from '@/modules/users/composables/useCurrentUser';
|
||||
|
||||
const AdminLayout: ParentComponent = (props) => {
|
||||
const getNavigationMenu = () => [
|
||||
{
|
||||
label: 'Analytics',
|
||||
href: '/admin/analytics',
|
||||
icon: 'i-tabler-chart-bar',
|
||||
},
|
||||
{
|
||||
label: 'Users',
|
||||
href: '/admin/users',
|
||||
icon: 'i-tabler-users',
|
||||
},
|
||||
{
|
||||
label: 'Organizations',
|
||||
href: '/admin/organizations',
|
||||
icon: 'i-tabler-building-community',
|
||||
},
|
||||
];
|
||||
|
||||
const sidenav = () => (
|
||||
<SideNav
|
||||
header={() => (
|
||||
<A href="/admin" class="flex items-center gap-2 pl-6 h-14 w-260px">
|
||||
<div class="i-tabler-layout-dashboard text-primary size-7" />
|
||||
<div class="font-medium text-base">
|
||||
Papra admin
|
||||
</div>
|
||||
</A>
|
||||
)}
|
||||
mainMenu={getNavigationMenu()}
|
||||
footer={() => (
|
||||
<div class="px-4 text-sm text-muted-foreground text-center">
|
||||
Papra ©
|
||||
{' '}
|
||||
{new Date().getFullYear()}
|
||||
</div>
|
||||
)}
|
||||
/>
|
||||
);
|
||||
|
||||
return (
|
||||
<div class="h-screen bg-card flex flex-row flex-1 min-h-0">
|
||||
<div class="w-280px flex-shrink-0 hidden md:block">
|
||||
{sidenav()}
|
||||
</div>
|
||||
<div class="flex-1 flex flex-col min-h-0">
|
||||
<header class="h-14 flex items-center px-4 justify-between">
|
||||
<Sheet>
|
||||
<SheetTrigger>
|
||||
<Button variant="ghost" size="icon" class="md:hidden mr-2">
|
||||
<div class="i-tabler-menu-2 size-6" />
|
||||
</Button>
|
||||
</SheetTrigger>
|
||||
<SheetContent side="left" class="bg-card p-0!">
|
||||
{sidenav()}
|
||||
</SheetContent>
|
||||
</Sheet>
|
||||
|
||||
<Button
|
||||
variant="outline"
|
||||
as={A}
|
||||
href="/"
|
||||
>
|
||||
Back to App
|
||||
</Button>
|
||||
</header>
|
||||
|
||||
<div class="flex-1 min-h-0 flex flex-col md:rounded-tl-lg md:border-l border-t bg-background">
|
||||
{props.children}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export const GuardedAdminLayout: ParentComponent = (props) => {
|
||||
const { hasPermission } = useCurrentUser();
|
||||
|
||||
return (
|
||||
<Show
|
||||
when={hasPermission('bo:access')}
|
||||
fallback={<Navigate href="/" />}
|
||||
>
|
||||
<AdminLayout {...props} />
|
||||
</Show>
|
||||
);
|
||||
};
|
||||
|
||||
export default GuardedAdminLayout;
|
||||
@@ -0,0 +1,95 @@
|
||||
import type { IntakeEmail } from '@/modules/intake-emails/intake-emails.types';
|
||||
import type { Organization } from '@/modules/organizations/organizations.types';
|
||||
import type { User } from '@/modules/users/users.types';
|
||||
import type { Webhook } from '@/modules/webhooks/webhooks.types';
|
||||
import { apiClient } from '@/modules/shared/http/api-client';
|
||||
|
||||
export type OrganizationWithMemberCount = Organization & { memberCount: number };
|
||||
|
||||
export type OrganizationMember = {
|
||||
id: string;
|
||||
userId: string;
|
||||
organizationId: string;
|
||||
role: string;
|
||||
createdAt: string;
|
||||
user: User;
|
||||
};
|
||||
|
||||
export type OrganizationStats = {
|
||||
documentsCount: number;
|
||||
documentsSize: number;
|
||||
deletedDocumentsCount: number;
|
||||
deletedDocumentsSize: number;
|
||||
totalDocumentsCount: number;
|
||||
totalDocumentsSize: number;
|
||||
};
|
||||
|
||||
export async function listOrganizations({ search, pageIndex = 0, pageSize = 25 }: { search?: string; pageIndex?: number; pageSize?: number }) {
|
||||
const { totalCount, organizations } = await apiClient<{
|
||||
organizations: OrganizationWithMemberCount[];
|
||||
totalCount: number;
|
||||
pageIndex: number;
|
||||
pageSize: number;
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: '/api/admin/organizations',
|
||||
query: { search, pageIndex, pageSize },
|
||||
});
|
||||
|
||||
return { pageIndex, pageSize, totalCount, organizations };
|
||||
}
|
||||
|
||||
export async function getOrganizationBasicInfo({ organizationId }: { organizationId: string }) {
|
||||
const { organization } = await apiClient<{
|
||||
organization: Organization;
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: `/api/admin/organizations/${organizationId}`,
|
||||
});
|
||||
|
||||
return { organization };
|
||||
}
|
||||
|
||||
export async function getOrganizationMembers({ organizationId }: { organizationId: string }) {
|
||||
const { members } = await apiClient<{
|
||||
members: OrganizationMember[];
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: `/api/admin/organizations/${organizationId}/members`,
|
||||
});
|
||||
|
||||
return { members };
|
||||
}
|
||||
|
||||
export async function getOrganizationIntakeEmails({ organizationId }: { organizationId: string }) {
|
||||
const { intakeEmails } = await apiClient<{
|
||||
intakeEmails: IntakeEmail[];
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: `/api/admin/organizations/${organizationId}/intake-emails`,
|
||||
});
|
||||
|
||||
return { intakeEmails };
|
||||
}
|
||||
|
||||
export async function getOrganizationWebhooks({ organizationId }: { organizationId: string }) {
|
||||
const { webhooks } = await apiClient<{
|
||||
webhooks: Webhook[];
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: `/api/admin/organizations/${organizationId}/webhooks`,
|
||||
});
|
||||
|
||||
return { webhooks };
|
||||
}
|
||||
|
||||
export async function getOrganizationStats({ organizationId }: { organizationId: string }) {
|
||||
const { stats } = await apiClient<{
|
||||
stats: OrganizationStats;
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: `/api/admin/organizations/${organizationId}/stats`,
|
||||
});
|
||||
|
||||
return { stats };
|
||||
}
|
||||
@@ -0,0 +1,230 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { A } from '@solidjs/router';
|
||||
import { useQuery } from '@tanstack/solid-query';
|
||||
import { createSolidTable, flexRender, getCoreRowModel, getPaginationRowModel } from '@tanstack/solid-table';
|
||||
import { createSignal, For, Show } from 'solid-js';
|
||||
import { RelativeTime } from '@/modules/i18n/components/RelativeTime';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/modules/ui/components/table';
|
||||
import { TextField, TextFieldRoot } from '@/modules/ui/components/textfield';
|
||||
import { listOrganizations } from '../organizations.services';
|
||||
|
||||
export const AdminListOrganizationsPage: Component = () => {
|
||||
const [search, setSearch] = createSignal('');
|
||||
const [pagination, setPagination] = createSignal({ pageIndex: 0, pageSize: 25 });
|
||||
|
||||
const query = useQuery(() => ({
|
||||
queryKey: ['admin', 'organizations', search(), pagination()],
|
||||
queryFn: () => listOrganizations({
|
||||
search: search() || undefined,
|
||||
pageIndex: pagination().pageIndex,
|
||||
pageSize: pagination().pageSize,
|
||||
}),
|
||||
}));
|
||||
|
||||
const table = createSolidTable({
|
||||
get data() {
|
||||
return query.data?.organizations ?? [];
|
||||
},
|
||||
columns: [
|
||||
{
|
||||
header: 'ID',
|
||||
accessorKey: 'id',
|
||||
cell: data => (
|
||||
<A
|
||||
href={`/admin/organizations/${data.getValue<string>()}`}
|
||||
class="font-mono hover:underline text-primary"
|
||||
>
|
||||
{data.getValue<string>()}
|
||||
</A>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: 'Name',
|
||||
accessorKey: 'name',
|
||||
cell: data => (
|
||||
<div class="font-medium">
|
||||
{data.getValue<string>()}
|
||||
</div>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: 'Members',
|
||||
accessorKey: 'memberCount',
|
||||
cell: data => (
|
||||
<div class="text-center">
|
||||
{data.getValue<number>()}
|
||||
</div>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: 'Created',
|
||||
accessorKey: 'createdAt',
|
||||
cell: data => <RelativeTime class="text-muted-foreground text-sm" date={new Date(data.getValue<string>())} />,
|
||||
},
|
||||
{
|
||||
header: 'Updated',
|
||||
accessorKey: 'updatedAt',
|
||||
cell: data => <RelativeTime class="text-muted-foreground text-sm" date={new Date(data.getValue<string>())} />,
|
||||
},
|
||||
],
|
||||
get rowCount() {
|
||||
return query.data?.totalCount ?? 0;
|
||||
},
|
||||
getCoreRowModel: getCoreRowModel(),
|
||||
getPaginationRowModel: getPaginationRowModel(),
|
||||
onPaginationChange: setPagination,
|
||||
state: {
|
||||
get pagination() {
|
||||
return pagination();
|
||||
},
|
||||
},
|
||||
manualPagination: true,
|
||||
});
|
||||
|
||||
const handleSearch = (e: Event) => {
|
||||
const target = e.target as HTMLInputElement;
|
||||
setSearch(target.value);
|
||||
setPagination({ pageIndex: 0, pageSize: pagination().pageSize });
|
||||
};
|
||||
|
||||
return (
|
||||
<div class="p-6">
|
||||
<div class="border-b mb-6 pb-4">
|
||||
<h1 class="text-xl font-bold mb-1">
|
||||
Organization Management
|
||||
</h1>
|
||||
<p class="text-sm text-muted-foreground">
|
||||
Manage and view all organizations in the system
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<TextFieldRoot class="max-w-sm">
|
||||
<TextField
|
||||
type="text"
|
||||
placeholder="Search by name or ID..."
|
||||
value={search()}
|
||||
onInput={handleSearch}
|
||||
/>
|
||||
</TextFieldRoot>
|
||||
</div>
|
||||
|
||||
<Show
|
||||
when={!query.isLoading}
|
||||
fallback={<div class="text-center py-8 text-muted-foreground">Loading organizations...</div>}
|
||||
>
|
||||
<Show
|
||||
when={(query.data?.organizations.length ?? 0) > 0}
|
||||
fallback={(
|
||||
<div class="text-center py-8 text-muted-foreground">
|
||||
{search() ? 'No organizations found matching your search.' : 'No organizations found.'}
|
||||
</div>
|
||||
)}
|
||||
>
|
||||
<div class="border-y">
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<For each={table.getHeaderGroups()}>
|
||||
{headerGroup => (
|
||||
<TableRow>
|
||||
<For each={headerGroup.headers}>
|
||||
{header => (
|
||||
<TableHead>
|
||||
{flexRender(header.column.columnDef.header, header.getContext())}
|
||||
</TableHead>
|
||||
)}
|
||||
</For>
|
||||
</TableRow>
|
||||
)}
|
||||
</For>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
<For each={table.getRowModel().rows}>
|
||||
{row => (
|
||||
<TableRow>
|
||||
<For each={row.getVisibleCells()}>
|
||||
{cell => (
|
||||
<TableCell>
|
||||
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
||||
</TableCell>
|
||||
)}
|
||||
</For>
|
||||
</TableRow>
|
||||
)}
|
||||
</For>
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-between mt-4">
|
||||
<div class="text-sm text-muted-foreground">
|
||||
Showing
|
||||
{' '}
|
||||
{table.getState().pagination.pageIndex * table.getState().pagination.pageSize + 1}
|
||||
{' '}
|
||||
to
|
||||
{' '}
|
||||
{Math.min((table.getState().pagination.pageIndex + 1) * table.getState().pagination.pageSize, query.data?.totalCount ?? 0)}
|
||||
{' '}
|
||||
of
|
||||
{' '}
|
||||
{query.data?.totalCount ?? 0}
|
||||
{' '}
|
||||
organizations
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<Button
|
||||
variant="outline"
|
||||
size="icon"
|
||||
class="size-8"
|
||||
onClick={() => table.setPageIndex(0)}
|
||||
disabled={!table.getCanPreviousPage()}
|
||||
>
|
||||
<div class="size-4 i-tabler-chevrons-left" />
|
||||
</Button>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="icon"
|
||||
class="size-8"
|
||||
onClick={() => table.previousPage()}
|
||||
disabled={!table.getCanPreviousPage()}
|
||||
>
|
||||
<div class="size-4 i-tabler-chevron-left" />
|
||||
</Button>
|
||||
<div class="text-sm whitespace-nowrap">
|
||||
Page
|
||||
{' '}
|
||||
{table.getState().pagination.pageIndex + 1}
|
||||
{' '}
|
||||
of
|
||||
{' '}
|
||||
{table.getPageCount()}
|
||||
</div>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="icon"
|
||||
class="size-8"
|
||||
onClick={() => table.nextPage()}
|
||||
disabled={!table.getCanNextPage()}
|
||||
>
|
||||
<div class="size-4 i-tabler-chevron-right" />
|
||||
</Button>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="icon"
|
||||
class="size-8"
|
||||
onClick={() => table.setPageIndex(table.getPageCount() - 1)}
|
||||
disabled={!table.getCanNextPage()}
|
||||
>
|
||||
<div class="size-4 i-tabler-chevrons-right" />
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</Show>
|
||||
</Show>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AdminListOrganizationsPage;
|
||||
@@ -0,0 +1,319 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { formatBytes } from '@corentinth/chisels';
|
||||
import { A, useParams } from '@solidjs/router';
|
||||
import { useQuery } from '@tanstack/solid-query';
|
||||
import { For, Show, Suspense } from 'solid-js';
|
||||
import { RelativeTime } from '@/modules/i18n/components/RelativeTime';
|
||||
import { Badge } from '@/modules/ui/components/badge';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/modules/ui/components/card';
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/modules/ui/components/table';
|
||||
import { UserListDetail } from '../../users/components/user-list-detail.component';
|
||||
import {
|
||||
getOrganizationBasicInfo,
|
||||
getOrganizationIntakeEmails,
|
||||
getOrganizationMembers,
|
||||
getOrganizationStats,
|
||||
getOrganizationWebhooks,
|
||||
} from '../organizations.services';
|
||||
|
||||
const OrganizationBasicInfo: Component<{ organizationId: string }> = (props) => {
|
||||
const query = useQuery(() => ({
|
||||
queryKey: ['admin', 'organizations', props.organizationId, 'basic'],
|
||||
queryFn: () => getOrganizationBasicInfo({ organizationId: props.organizationId }),
|
||||
}));
|
||||
|
||||
return (
|
||||
<Show when={query.data}>
|
||||
{data => (
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Organization Information</CardTitle>
|
||||
<CardDescription>Basic organization details</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent class="space-y-3">
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">ID</span>
|
||||
<span class="font-mono text-xs">{data().organization.id}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Name</span>
|
||||
<span class="text-sm font-medium">{data().organization.name}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Created</span>
|
||||
<RelativeTime class="text-sm" date={new Date(data().organization.createdAt)} />
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Updated</span>
|
||||
<RelativeTime class="text-sm" date={new Date(data().organization.updatedAt)} />
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
)}
|
||||
</Show>
|
||||
);
|
||||
};
|
||||
|
||||
const OrganizationMembers: Component<{ organizationId: string }> = (props) => {
|
||||
const query = useQuery(() => ({
|
||||
queryKey: ['admin', 'organizations', props.organizationId, 'members'],
|
||||
queryFn: () => getOrganizationMembers({ organizationId: props.organizationId }),
|
||||
}));
|
||||
|
||||
return (
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>
|
||||
Members (
|
||||
{query.data?.members.length ?? 0}
|
||||
)
|
||||
</CardTitle>
|
||||
<CardDescription>Users who belong to this organization</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<Show when={query.data}>
|
||||
{data => (
|
||||
<Show
|
||||
when={data().members.length > 0}
|
||||
fallback={<p class="text-sm text-muted-foreground">No members found</p>}
|
||||
>
|
||||
<div class="rounded-md border">
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<TableRow>
|
||||
<TableHead>User</TableHead>
|
||||
<TableHead>Id</TableHead>
|
||||
<TableHead>Role</TableHead>
|
||||
<TableHead>Joined</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
<For each={data().members}>
|
||||
{member => (
|
||||
<TableRow>
|
||||
|
||||
<TableCell>
|
||||
<UserListDetail {...member.user} />
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<A
|
||||
href={`/admin/users/${member.userId}`}
|
||||
class="font-mono hover:underline"
|
||||
>
|
||||
<div class="font-mono text-sm">{member.userId}</div>
|
||||
</A>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<Badge variant="secondary" class="capitalize">
|
||||
{member.role}
|
||||
</Badge>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<RelativeTime class="text-muted-foreground text-sm" date={new Date(member.createdAt)} />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
)}
|
||||
</For>
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
</Show>
|
||||
)}
|
||||
</Show>
|
||||
</CardContent>
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
|
||||
const OrganizationIntakeEmails: Component<{ organizationId: string }> = (props) => {
|
||||
const query = useQuery(() => ({
|
||||
queryKey: ['admin', 'organizations', props.organizationId, 'intake-emails'],
|
||||
queryFn: () => getOrganizationIntakeEmails({ organizationId: props.organizationId }),
|
||||
}));
|
||||
|
||||
return (
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>
|
||||
Intake Emails (
|
||||
{query.data?.intakeEmails.length ?? 0}
|
||||
)
|
||||
</CardTitle>
|
||||
<CardDescription>Email addresses for document ingestion</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<Show when={query.data}>
|
||||
{data => (
|
||||
<Show
|
||||
when={data().intakeEmails.length > 0}
|
||||
fallback={<p class="text-sm text-muted-foreground">No intake emails configured</p>}
|
||||
>
|
||||
<div class="space-y-2">
|
||||
<For each={data().intakeEmails}>
|
||||
{email => (
|
||||
<div class="flex items-center justify-between p-3 border rounded-md">
|
||||
<div>
|
||||
<div class="font-mono text-sm">{email.emailAddress}</div>
|
||||
<div class="text-xs text-muted-foreground mt-1">
|
||||
{email.isEnabled ? 'Enabled' : 'Disabled'}
|
||||
</div>
|
||||
</div>
|
||||
<Badge variant={email.isEnabled ? 'default' : 'outline'}>
|
||||
{email.isEnabled ? 'Active' : 'Inactive'}
|
||||
</Badge>
|
||||
</div>
|
||||
)}
|
||||
</For>
|
||||
</div>
|
||||
</Show>
|
||||
)}
|
||||
</Show>
|
||||
</CardContent>
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
|
||||
const OrganizationWebhooks: Component<{ organizationId: string }> = (props) => {
|
||||
const query = useQuery(() => ({
|
||||
queryKey: ['admin', 'organizations', props.organizationId, 'webhooks'],
|
||||
queryFn: () => getOrganizationWebhooks({ organizationId: props.organizationId }),
|
||||
}));
|
||||
|
||||
return (
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>
|
||||
Webhooks (
|
||||
{query.data?.webhooks.length ?? 0}
|
||||
)
|
||||
</CardTitle>
|
||||
<CardDescription>Configured webhook endpoints</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<Show when={query.data}>
|
||||
{data => (
|
||||
<Show
|
||||
when={data().webhooks.length > 0}
|
||||
fallback={<p class="text-sm text-muted-foreground">No webhooks configured</p>}
|
||||
>
|
||||
<div class="space-y-2">
|
||||
<For each={data().webhooks}>
|
||||
{webhook => (
|
||||
<div class="flex items-center justify-between p-3 border rounded-md">
|
||||
<div class="flex-1 min-w-0">
|
||||
<div class="font-medium text-sm truncate">{webhook.name}</div>
|
||||
<div class="font-mono text-xs text-muted-foreground truncate mt-1">{webhook.url}</div>
|
||||
</div>
|
||||
<Badge variant={webhook.enabled ? 'default' : 'outline'} class="ml-2 flex-shrink-0">
|
||||
{webhook.enabled ? 'Active' : 'Inactive'}
|
||||
</Badge>
|
||||
</div>
|
||||
)}
|
||||
</For>
|
||||
</div>
|
||||
</Show>
|
||||
)}
|
||||
</Show>
|
||||
</CardContent>
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
|
||||
const OrganizationStats: Component<{ organizationId: string }> = (props) => {
|
||||
const query = useQuery(() => ({
|
||||
queryKey: ['admin', 'organizations', props.organizationId, 'stats'],
|
||||
queryFn: () => getOrganizationStats({ organizationId: props.organizationId }),
|
||||
}));
|
||||
|
||||
return (
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Usage Statistics</CardTitle>
|
||||
<CardDescription>Document and storage statistics</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<Show when={query.data}>
|
||||
{data => (
|
||||
<div class="space-y-3">
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Active Documents</span>
|
||||
<span class="text-sm font-medium">{data().stats.documentsCount}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Active Storage</span>
|
||||
<span class="text-sm font-medium">{formatBytes({ bytes: data().stats.documentsSize, base: 1000 })}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Deleted Documents</span>
|
||||
<span class="text-sm font-medium">{data().stats.deletedDocumentsCount}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Deleted Storage</span>
|
||||
<span class="text-sm font-medium">{formatBytes({ bytes: data().stats.deletedDocumentsSize, base: 1000 })}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start pt-2 border-t">
|
||||
<span class="text-sm font-medium">Total Documents</span>
|
||||
<span class="text-sm font-bold">{data().stats.totalDocumentsCount}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm font-medium">Total Storage</span>
|
||||
<span class="text-sm font-bold">{formatBytes({ bytes: data().stats.totalDocumentsSize, base: 1000 })}</span>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</Show>
|
||||
</CardContent>
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
|
||||
export const AdminOrganizationDetailPage: Component = () => {
|
||||
const params = useParams<{ organizationId: string }>();
|
||||
|
||||
return (
|
||||
<div class="p-6 mt-4">
|
||||
<div class="mb-6">
|
||||
<Button as={A} href="/admin/organizations" variant="ghost" size="sm" class="mb-4">
|
||||
<div class="i-tabler-arrow-left size-4 mr-2" />
|
||||
Back to Organizations
|
||||
</Button>
|
||||
|
||||
<h1 class="text-2xl font-bold mb-1">
|
||||
Organization Details
|
||||
</h1>
|
||||
<p class="text-muted-foreground">
|
||||
{params.organizationId}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="space-y-6">
|
||||
<div class="grid gap-6 md:grid-cols-2">
|
||||
<Suspense fallback={<div class="text-center py-4 text-muted-foreground">Loading organization info...</div>}>
|
||||
<OrganizationBasicInfo organizationId={params.organizationId} />
|
||||
</Suspense>
|
||||
|
||||
<Suspense fallback={<div class="text-center py-4 text-muted-foreground">Loading stats...</div>}>
|
||||
<OrganizationStats organizationId={params.organizationId} />
|
||||
</Suspense>
|
||||
</div>
|
||||
|
||||
<div class="grid gap-6 md:grid-cols-2">
|
||||
<Suspense fallback={<div class="text-center py-4 text-muted-foreground">Loading intake emails...</div>}>
|
||||
<OrganizationIntakeEmails organizationId={params.organizationId} />
|
||||
</Suspense>
|
||||
|
||||
<Suspense fallback={<div class="text-center py-4 text-muted-foreground">Loading webhooks...</div>}>
|
||||
<OrganizationWebhooks organizationId={params.organizationId} />
|
||||
</Suspense>
|
||||
</div>
|
||||
|
||||
<Suspense fallback={<div class="text-center py-4 text-muted-foreground">Loading members...</div>}>
|
||||
<OrganizationMembers organizationId={params.organizationId} />
|
||||
</Suspense>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AdminOrganizationDetailPage;
|
||||
@@ -0,0 +1,23 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { A } from '@solidjs/router';
|
||||
|
||||
export const UserListDetail: Component<{ id: string; name?: string | null; email: string; href?: string }> = (props) => {
|
||||
return (
|
||||
<A href={props.href ?? `/admin/users/${props.id}`} class="flex items-center gap-2 group">
|
||||
<div class="size-9 flex items-center justify-center rounded bg-muted">
|
||||
<div class="i-tabler-user size-5 group-hover:text-primary" />
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
||||
<div class="font-medium group-hover:text-primary transition">
|
||||
{props.name || '-'}
|
||||
</div>
|
||||
|
||||
<div class="text-muted-foreground text-xs">
|
||||
{props.email}
|
||||
</div>
|
||||
</div>
|
||||
</A>
|
||||
);
|
||||
};
|
||||
@@ -0,0 +1,232 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { A } from '@solidjs/router';
|
||||
import { useQuery } from '@tanstack/solid-query';
|
||||
import { createSolidTable, flexRender, getCoreRowModel, getPaginationRowModel } from '@tanstack/solid-table';
|
||||
import { createSignal, For, Show } from 'solid-js';
|
||||
import { RelativeTime } from '@/modules/i18n/components/RelativeTime';
|
||||
import { Badge } from '@/modules/ui/components/badge';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/modules/ui/components/table';
|
||||
import { TextField, TextFieldRoot } from '@/modules/ui/components/textfield';
|
||||
import { UserListDetail } from '../components/user-list-detail.component';
|
||||
import { listUsers } from '../users.services';
|
||||
|
||||
export const AdminListUsersPage: Component = () => {
|
||||
const [search, setSearch] = createSignal('');
|
||||
const [pagination, setPagination] = createSignal({ pageIndex: 0, pageSize: 25 });
|
||||
|
||||
const query = useQuery(() => ({
|
||||
queryKey: ['admin', 'users', search(), pagination()],
|
||||
queryFn: () => listUsers({
|
||||
search: search() || undefined,
|
||||
...pagination(),
|
||||
}),
|
||||
}));
|
||||
|
||||
const table = createSolidTable({
|
||||
get data() {
|
||||
return query.data?.users ?? [];
|
||||
},
|
||||
columns: [
|
||||
|
||||
{
|
||||
header: 'User',
|
||||
accessorKey: 'email',
|
||||
cell: data => <UserListDetail {...data.row.original} />,
|
||||
},
|
||||
{
|
||||
header: 'ID',
|
||||
accessorKey: 'id',
|
||||
cell: data => (
|
||||
<A
|
||||
href={`/admin/users/${data.getValue<string>()}`}
|
||||
class="font-mono hover:underline text-muted-foreground"
|
||||
>
|
||||
{data.getValue<string>()}
|
||||
</A>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: 'Status',
|
||||
accessorKey: 'emailVerified',
|
||||
cell: data => (
|
||||
<Badge variant={data.getValue<boolean>() ? 'default' : 'outline'}>
|
||||
{data.getValue<boolean>() ? 'Verified' : 'Unverified'}
|
||||
</Badge>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: 'Orgs',
|
||||
accessorKey: 'organizationCount',
|
||||
cell: data => (
|
||||
<div class="text-center">
|
||||
{data.getValue<number>()}
|
||||
</div>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: 'Created',
|
||||
accessorKey: 'createdAt',
|
||||
cell: data => <RelativeTime class="text-muted-foreground text-sm" date={new Date(data.getValue<string>())} />,
|
||||
},
|
||||
],
|
||||
get rowCount() {
|
||||
return query.data?.totalCount ?? 0;
|
||||
},
|
||||
getCoreRowModel: getCoreRowModel(),
|
||||
getPaginationRowModel: getPaginationRowModel(),
|
||||
onPaginationChange: setPagination,
|
||||
state: {
|
||||
get pagination() {
|
||||
return pagination();
|
||||
},
|
||||
},
|
||||
manualPagination: true,
|
||||
});
|
||||
|
||||
const handleSearch = (e: Event) => {
|
||||
const target = e.target as HTMLInputElement;
|
||||
setSearch(target.value);
|
||||
setPagination({ pageIndex: 0, pageSize: pagination().pageSize });
|
||||
};
|
||||
|
||||
return (
|
||||
<div class="p-6">
|
||||
<div class="border-b mb-6 pb-4">
|
||||
<h1 class="text-xl font-bold mb-1">
|
||||
User Management
|
||||
</h1>
|
||||
<p class="text-sm text-muted-foreground">
|
||||
Manage and view all users in the system
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<TextFieldRoot class="max-w-sm">
|
||||
<TextField
|
||||
type="text"
|
||||
placeholder="Search by name, email, or ID..."
|
||||
value={search()}
|
||||
onInput={handleSearch}
|
||||
/>
|
||||
</TextFieldRoot>
|
||||
</div>
|
||||
|
||||
<Show
|
||||
when={!query.isLoading}
|
||||
fallback={<div class="text-center py-8 text-muted-foreground">Loading users...</div>}
|
||||
>
|
||||
<Show
|
||||
when={(query.data?.users.length ?? 0) > 0}
|
||||
fallback={(
|
||||
<div class="text-center py-8 text-muted-foreground">
|
||||
{search() ? 'No users found matching your search.' : 'No users found.'}
|
||||
</div>
|
||||
)}
|
||||
>
|
||||
<div class="border-y">
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<For each={table.getHeaderGroups()}>
|
||||
{headerGroup => (
|
||||
<TableRow>
|
||||
<For each={headerGroup.headers}>
|
||||
{header => (
|
||||
<TableHead>
|
||||
{flexRender(header.column.columnDef.header, header.getContext())}
|
||||
</TableHead>
|
||||
)}
|
||||
</For>
|
||||
</TableRow>
|
||||
)}
|
||||
</For>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
<For each={table.getRowModel().rows}>
|
||||
{row => (
|
||||
<TableRow>
|
||||
<For each={row.getVisibleCells()}>
|
||||
{cell => (
|
||||
<TableCell>
|
||||
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
||||
</TableCell>
|
||||
)}
|
||||
</For>
|
||||
</TableRow>
|
||||
)}
|
||||
</For>
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-between mt-4">
|
||||
<div class="text-sm text-muted-foreground">
|
||||
Showing
|
||||
{' '}
|
||||
{table.getState().pagination.pageIndex * table.getState().pagination.pageSize + 1}
|
||||
{' '}
|
||||
to
|
||||
{' '}
|
||||
{Math.min((table.getState().pagination.pageIndex + 1) * table.getState().pagination.pageSize, query.data?.totalCount ?? 0)}
|
||||
{' '}
|
||||
of
|
||||
{' '}
|
||||
{query.data?.totalCount ?? 0}
|
||||
{' '}
|
||||
users
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<Button
|
||||
variant="outline"
|
||||
size="icon"
|
||||
class="size-8"
|
||||
onClick={() => table.setPageIndex(0)}
|
||||
disabled={!table.getCanPreviousPage()}
|
||||
>
|
||||
<div class="size-4 i-tabler-chevrons-left" />
|
||||
</Button>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="icon"
|
||||
class="size-8"
|
||||
onClick={() => table.previousPage()}
|
||||
disabled={!table.getCanPreviousPage()}
|
||||
>
|
||||
<div class="size-4 i-tabler-chevron-left" />
|
||||
</Button>
|
||||
<div class="text-sm whitespace-nowrap">
|
||||
Page
|
||||
{' '}
|
||||
{table.getState().pagination.pageIndex + 1}
|
||||
{' '}
|
||||
of
|
||||
{' '}
|
||||
{table.getPageCount()}
|
||||
</div>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="icon"
|
||||
class="size-8"
|
||||
onClick={() => table.nextPage()}
|
||||
disabled={!table.getCanNextPage()}
|
||||
>
|
||||
<div class="size-4 i-tabler-chevron-right" />
|
||||
</Button>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="icon"
|
||||
class="size-8"
|
||||
onClick={() => table.setPageIndex(table.getPageCount() - 1)}
|
||||
disabled={!table.getCanNextPage()}
|
||||
>
|
||||
<div class="size-4 i-tabler-chevrons-right" />
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</Show>
|
||||
</Show>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AdminListUsersPage;
|
||||
@@ -0,0 +1,168 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { A, useParams } from '@solidjs/router';
|
||||
import { useQuery } from '@tanstack/solid-query';
|
||||
import { For, Show } from 'solid-js';
|
||||
import { RelativeTime } from '@/modules/i18n/components/RelativeTime';
|
||||
import { Badge } from '@/modules/ui/components/badge';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/modules/ui/components/card';
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/modules/ui/components/table';
|
||||
import { getUserDetail } from '../users.services';
|
||||
|
||||
export const AdminUserDetailPage: Component = () => {
|
||||
const params = useParams<{ userId: string }>();
|
||||
|
||||
const query = useQuery(() => ({
|
||||
queryKey: ['admin', 'users', params.userId],
|
||||
queryFn: () => getUserDetail({ userId: params.userId }),
|
||||
}));
|
||||
|
||||
return (
|
||||
<div class="p-6 max-w-screen-lg mx-auto mt-4">
|
||||
<div class="mb-6">
|
||||
<Button as={A} href="/admin/users" variant="ghost" size="sm" class="mb-4">
|
||||
<div class="i-tabler-arrow-left size-4 mr-2" />
|
||||
Back to Users
|
||||
</Button>
|
||||
|
||||
<Show
|
||||
when={!query.isLoading && query.data}
|
||||
fallback={<div class="text-center py-8 text-muted-foreground">Loading user details...</div>}
|
||||
>
|
||||
{data => (
|
||||
<div class="space-y-6">
|
||||
<div class="border-b pb-4">
|
||||
<h1 class="text-2xl font-bold flex items-center gap-3">
|
||||
{data().user.name || 'Unnamed User'}
|
||||
</h1>
|
||||
<p class="text-muted-foreground mt-1">{data().user.email}</p>
|
||||
</div>
|
||||
|
||||
<div class="grid gap-6 md:grid-cols-2">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>User Information</CardTitle>
|
||||
<CardDescription>Basic user details and account information</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent class="space-y-3">
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">User ID</span>
|
||||
<span class="font-mono text-xs">{data().user.id}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Email</span>
|
||||
<span class="text-sm font-medium">{data().user.email}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Name</span>
|
||||
<span class="text-sm">{data().user.name || '-'}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Email Verified</span>
|
||||
<Badge variant={data().user.emailVerified ? 'default' : 'outline'} class="text-xs">
|
||||
{data().user.emailVerified ? 'Yes' : 'No'}
|
||||
</Badge>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Max Organizations</span>
|
||||
<span class="text-sm">{data().user.maxOrganizationCount ?? 'Unlimited'}</span>
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Created</span>
|
||||
<RelativeTime class="text-sm" date={new Date(data().user.createdAt)} />
|
||||
</div>
|
||||
<div class="flex justify-between items-start">
|
||||
<span class="text-sm text-muted-foreground">Last Updated</span>
|
||||
<RelativeTime class="text-sm" date={new Date(data().user.updatedAt)} />
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Roles & Permissions</CardTitle>
|
||||
<CardDescription>User roles and access levels</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<Show
|
||||
when={data().roles.length > 0}
|
||||
fallback={<p class="text-sm text-muted-foreground">No roles assigned</p>}
|
||||
>
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<For each={data().roles}>
|
||||
{role => (
|
||||
<Badge variant="secondary" class="font-mono">
|
||||
{role}
|
||||
</Badge>
|
||||
)}
|
||||
</For>
|
||||
</div>
|
||||
</Show>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>
|
||||
Organizations (
|
||||
{data().organizations.length}
|
||||
)
|
||||
</CardTitle>
|
||||
<CardDescription>Organizations this user belongs to</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<Show
|
||||
when={data().organizations.length > 0}
|
||||
fallback={<p class="text-sm text-muted-foreground">Not a member of any organizations</p>}
|
||||
>
|
||||
<div class="rounded-md border">
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<TableRow>
|
||||
<TableHead>ID</TableHead>
|
||||
<TableHead>Name</TableHead>
|
||||
<TableHead>Created</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
<For each={data().organizations}>
|
||||
{org => (
|
||||
<TableRow>
|
||||
<TableCell>
|
||||
<A
|
||||
href={`/admin/organizations/${org.id}`}
|
||||
class="font-mono text-xs hover:underline text-primary"
|
||||
>
|
||||
{org.id}
|
||||
</A>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<A
|
||||
href={`/admin/organizations/${org.id}`}
|
||||
class="font-medium hover:underline"
|
||||
>
|
||||
{org.name}
|
||||
</A>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<RelativeTime class="text-muted-foreground text-sm" date={new Date(org.createdAt)} />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
)}
|
||||
</For>
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
</Show>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
)}
|
||||
</Show>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AdminUserDetailPage;
|
||||
33
apps/papra-client/src/modules/admin/users/users.services.ts
Normal file
33
apps/papra-client/src/modules/admin/users/users.services.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
import type { Organization } from '@/modules/organizations/organizations.types';
|
||||
import type { User } from '@/modules/users/users.types';
|
||||
import { apiClient } from '@/modules/shared/http/api-client';
|
||||
|
||||
export type UserWithOrganizationCount = User & { organizationCount: number };
|
||||
|
||||
export async function listUsers({ search, pageIndex = 0, pageSize = 25 }: { search?: string; pageIndex?: number; pageSize?: number }) {
|
||||
const { totalCount, users } = await apiClient<{
|
||||
users: UserWithOrganizationCount[];
|
||||
totalCount: number;
|
||||
pageIndex: number;
|
||||
pageSize: number;
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: '/api/admin/users',
|
||||
query: { search, pageIndex, pageSize },
|
||||
});
|
||||
|
||||
return { pageIndex, pageSize, totalCount, users };
|
||||
}
|
||||
|
||||
export async function getUserDetail({ userId }: { userId: string }) {
|
||||
const { organizations, roles, user } = await apiClient<{
|
||||
user: User;
|
||||
organizations: Organization[];
|
||||
roles: string[];
|
||||
}>({
|
||||
method: 'GET',
|
||||
path: `/api/admin/users/${userId}`,
|
||||
});
|
||||
|
||||
return { organizations, roles, user };
|
||||
}
|
||||
@@ -17,9 +17,18 @@ export function createDemoAuthClient() {
|
||||
},
|
||||
signOut: () => Promise.resolve({}),
|
||||
signUp: () => Promise.resolve({}),
|
||||
forgetPassword: () => Promise.resolve({}),
|
||||
requestPasswordReset: () => Promise.resolve({}),
|
||||
resetPassword: () => Promise.resolve({}),
|
||||
sendVerificationEmail: () => Promise.resolve({}),
|
||||
twoFactor: {
|
||||
enable: () => Promise.resolve({ data: null, error: null }),
|
||||
disable: () => Promise.resolve({ data: null, error: null }),
|
||||
getTotpUri: () => Promise.resolve({ data: null, error: null }),
|
||||
verifyTotp: () => Promise.resolve({ data: null, error: null }),
|
||||
generateBackupCodes: () => Promise.resolve({ data: null, error: null }),
|
||||
viewBackupCodes: () => Promise.resolve({ data: null, error: null }),
|
||||
verifyBackupCode: () => Promise.resolve({ data: null, error: null }),
|
||||
},
|
||||
};
|
||||
|
||||
return new Proxy(baseClient, {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import type { Config } from '../config/config';
|
||||
|
||||
import type { SsoProviderConfig } from './auth.types';
|
||||
import { genericOAuthClient } from 'better-auth/client/plugins';
|
||||
import { genericOAuthClient, twoFactorClient } from 'better-auth/client/plugins';
|
||||
import { createAuthClient as createBetterAuthClient } from 'better-auth/solid';
|
||||
import { buildTimeConfig } from '../config/config';
|
||||
import { queryClient } from '../shared/query/query-client';
|
||||
@@ -13,6 +13,7 @@ export function createAuthClient() {
|
||||
baseURL: buildTimeConfig.baseApiUrl,
|
||||
plugins: [
|
||||
genericOAuthClient(),
|
||||
twoFactorClient(),
|
||||
],
|
||||
});
|
||||
|
||||
@@ -20,10 +21,11 @@ export function createAuthClient() {
|
||||
// we can't spread the client because it is a proxy object
|
||||
signIn: client.signIn,
|
||||
signUp: client.signUp,
|
||||
forgetPassword: client.forgetPassword,
|
||||
requestPasswordReset: client.requestPasswordReset,
|
||||
resetPassword: client.resetPassword,
|
||||
sendVerificationEmail: client.sendVerificationEmail,
|
||||
useSession: client.useSession,
|
||||
twoFactor: client.twoFactor,
|
||||
signOut: async () => {
|
||||
trackingServices.capture({ event: 'User logged out' });
|
||||
const result = await client.signOut();
|
||||
@@ -41,9 +43,10 @@ export const {
|
||||
signIn,
|
||||
signUp,
|
||||
signOut,
|
||||
forgetPassword,
|
||||
requestPasswordReset,
|
||||
resetPassword,
|
||||
sendVerificationEmail,
|
||||
twoFactor,
|
||||
} = buildTimeConfig.isDemoMode
|
||||
? createDemoAuthClient()
|
||||
: createAuthClient();
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import {
|
||||
OTPField,
|
||||
OTPFieldGroup,
|
||||
OTPFieldInput,
|
||||
OTPFieldSlot,
|
||||
REGEXP_ONLY_DIGITS,
|
||||
} from '@/modules/ui/components/otp-field';
|
||||
|
||||
export const TotpField: Component<{
|
||||
onComplete?: (args: { totpCode: string }) => void;
|
||||
value?: string;
|
||||
onValueChange?: (value: string) => void;
|
||||
}> = (props) => {
|
||||
return (
|
||||
<OTPField
|
||||
maxLength={6}
|
||||
onComplete={totpCode => props.onComplete?.({ totpCode })}
|
||||
value={props.value}
|
||||
onValueChange={props.onValueChange}
|
||||
>
|
||||
<OTPFieldInput pattern={REGEXP_ONLY_DIGITS} aria-label="Enter the 6-digit verification code" />
|
||||
<OTPFieldGroup>
|
||||
<OTPFieldSlot index={0} />
|
||||
<OTPFieldSlot index={1} />
|
||||
<OTPFieldSlot index={2} />
|
||||
<OTPFieldSlot index={3} />
|
||||
<OTPFieldSlot index={4} />
|
||||
<OTPFieldSlot index={5} />
|
||||
</OTPFieldGroup>
|
||||
</OTPField>
|
||||
);
|
||||
};
|
||||
@@ -2,6 +2,7 @@ import type { Component } from 'solid-js';
|
||||
import type { SsoProviderConfig } from '../auth.types';
|
||||
import { buildUrl } from '@corentinth/chisels';
|
||||
import { A, useNavigate } from '@solidjs/router';
|
||||
import { useMutation } from '@tanstack/solid-query';
|
||||
import { createSignal, For, Show } from 'solid-js';
|
||||
import * as v from 'valibot';
|
||||
import { useConfig } from '@/modules/config/config.provider';
|
||||
@@ -11,16 +12,178 @@ import { useI18nApiErrors } from '@/modules/shared/http/composables/i18n-api-err
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { Checkbox, CheckboxControl, CheckboxLabel } from '@/modules/ui/components/checkbox';
|
||||
import { Separator } from '@/modules/ui/components/separator';
|
||||
import { createToast } from '@/modules/ui/components/sonner';
|
||||
import { TextField, TextFieldLabel, TextFieldRoot } from '@/modules/ui/components/textfield';
|
||||
import { AuthLayout } from '../../ui/layouts/auth-layout.component';
|
||||
import { authPagesPaths } from '../auth.constants';
|
||||
import { getEnabledSsoProviderConfigs, isEmailVerificationRequiredError } from '../auth.models';
|
||||
import { authWithProvider, signIn } from '../auth.services';
|
||||
import { authWithProvider, signIn, twoFactor } from '../auth.services';
|
||||
import { AuthLegalLinks } from '../components/legal-links.component';
|
||||
import { NoAuthProviderWarning } from '../components/no-auth-provider';
|
||||
import { SsoProviderButton } from '../components/sso-provider-button.component';
|
||||
import { TotpField } from '../components/verify-otp.component';
|
||||
|
||||
export const EmailLoginForm: Component = () => {
|
||||
const TotpVerificationForm: Component = () => {
|
||||
const navigate = useNavigate();
|
||||
const { t } = useI18n();
|
||||
const [trustDevice, setTrustDevice] = createSignal(false);
|
||||
const [totpCode, setTotpCode] = createSignal('');
|
||||
|
||||
const verifyMutation = useMutation(() => ({
|
||||
mutationFn: async ({ code, trust }: { code: string; trust: boolean }) => {
|
||||
const { error } = await twoFactor.verifyTotp({ code, trustDevice: trust });
|
||||
|
||||
if (error) {
|
||||
createToast({ type: 'error', message: t('auth.login.two-factor.verification-failed') });
|
||||
throw new Error(error.message);
|
||||
}
|
||||
},
|
||||
onSuccess: () => {
|
||||
navigate('/');
|
||||
},
|
||||
}));
|
||||
|
||||
const handleTotpComplete = (code: string) => {
|
||||
setTotpCode(code);
|
||||
if (code.length === 6) {
|
||||
verifyMutation.mutate({ code, trust: trustDevice() });
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
<p class="text-muted-foreground mt-1 mb-4">
|
||||
{t('auth.login.two-factor.description.totp')}
|
||||
</p>
|
||||
|
||||
<div class="flex flex-col gap-1 mb-4 items-center">
|
||||
<label class="sr-only">{t('auth.login.two-factor.code.label.totp')}</label>
|
||||
<TotpField value={totpCode()} onValueChange={handleTotpComplete} />
|
||||
<Show when={verifyMutation.error}>
|
||||
{getError => <div class="text-red-500 text-sm">{getError().message}</div>}
|
||||
</Show>
|
||||
|
||||
<Checkbox class="flex items-center gap-2 mt-4" checked={trustDevice()} onChange={setTrustDevice}>
|
||||
<CheckboxControl />
|
||||
<CheckboxLabel class="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70">
|
||||
{t('auth.login.two-factor.trust-device.label')}
|
||||
</CheckboxLabel>
|
||||
</Checkbox>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
const BackupCodeVerificationForm: Component = () => {
|
||||
const navigate = useNavigate();
|
||||
const { t } = useI18n();
|
||||
const [trustDevice, setTrustDevice] = createSignal(false);
|
||||
|
||||
const { form, Form, Field } = createForm({
|
||||
onSubmit: async ({ code }) => {
|
||||
const { error } = await twoFactor.verifyBackupCode({
|
||||
code,
|
||||
trustDevice: trustDevice(),
|
||||
});
|
||||
|
||||
if (error) {
|
||||
createToast({ type: 'error', message: t('auth.login.two-factor.verification-failed') });
|
||||
throw new Error(error.message);
|
||||
}
|
||||
|
||||
navigate('/');
|
||||
},
|
||||
schema: v.object({
|
||||
code: v.pipe(
|
||||
v.string(),
|
||||
v.nonEmpty(t('auth.login.two-factor.code.required')),
|
||||
),
|
||||
}),
|
||||
initialValues: {
|
||||
code: '',
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<Form>
|
||||
<p class="text-muted-foreground mt-1 mb-4">
|
||||
{t('auth.login.two-factor.description.backup-code')}
|
||||
</p>
|
||||
|
||||
<Field name="code">
|
||||
{(field, inputProps) => (
|
||||
<TextFieldRoot class="flex flex-col gap-1 mb-4">
|
||||
<TextFieldLabel for="backup-code">{t('auth.login.two-factor.code.label.backup-code')}</TextFieldLabel>
|
||||
<TextField
|
||||
type="text"
|
||||
id="backup-code"
|
||||
placeholder={t('auth.login.two-factor.code.placeholder.backup-code')}
|
||||
{...inputProps}
|
||||
autoFocus
|
||||
value={field.value}
|
||||
aria-invalid={Boolean(field.error)}
|
||||
/>
|
||||
{field.error && <div class="text-red-500 text-sm">{field.error}</div>}
|
||||
</TextFieldRoot>
|
||||
)}
|
||||
</Field>
|
||||
|
||||
<Checkbox class="flex items-center gap-2 mb-4" checked={trustDevice()} onChange={setTrustDevice}>
|
||||
<CheckboxControl />
|
||||
<CheckboxLabel class="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70">
|
||||
{t('auth.login.two-factor.trust-device.label')}
|
||||
</CheckboxLabel>
|
||||
</Checkbox>
|
||||
|
||||
<Button type="submit" class="w-full" isLoading={form.submitting}>
|
||||
{t('auth.login.two-factor.submit')}
|
||||
</Button>
|
||||
|
||||
<div class="text-red-500 text-sm mt-4">{form.response.message}</div>
|
||||
|
||||
</Form>
|
||||
);
|
||||
};
|
||||
|
||||
const TwoFactorVerificationForm: Component<{ onBack: () => void }> = (props) => {
|
||||
const [useBackupCode, setUseBackupCode] = createSignal(false);
|
||||
const { t } = useI18n();
|
||||
|
||||
return (
|
||||
<div>
|
||||
<Show
|
||||
when={!useBackupCode()}
|
||||
fallback={(
|
||||
<BackupCodeVerificationForm />
|
||||
)}
|
||||
>
|
||||
<TotpVerificationForm />
|
||||
</Show>
|
||||
|
||||
<div class="flex flex-col gap-2 mt-4">
|
||||
<Show
|
||||
when={!useBackupCode()}
|
||||
fallback={(
|
||||
<Button variant="link" class="p-0 h-auto text-muted-foreground" onClick={() => setUseBackupCode(false)}>
|
||||
{t('auth.login.two-factor.use-totp')}
|
||||
</Button>
|
||||
)}
|
||||
>
|
||||
<Button variant="link" class="p-0 h-auto text-muted-foreground" onClick={() => setUseBackupCode(true)}>
|
||||
{t('auth.login.two-factor.use-backup-code')}
|
||||
</Button>
|
||||
</Show>
|
||||
|
||||
<Button variant="link" class="p-0 h-auto text-muted-foreground" onClick={props.onBack}>
|
||||
{t('auth.login.two-factor.back')}
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export const EmailLoginForm: Component<{ onTwoFactorRequired: () => void }> = (props) => {
|
||||
const navigate = useNavigate();
|
||||
const { config } = useConfig();
|
||||
const { t } = useI18n();
|
||||
@@ -28,7 +191,7 @@ export const EmailLoginForm: Component = () => {
|
||||
|
||||
const { form, Form, Field } = createForm({
|
||||
onSubmit: async ({ email, password, rememberMe }) => {
|
||||
const { error } = await signIn.email({
|
||||
const { data: loginResult, error } = await signIn.email({
|
||||
email,
|
||||
password,
|
||||
rememberMe,
|
||||
@@ -36,6 +199,11 @@ export const EmailLoginForm: Component = () => {
|
||||
callbackURL: buildUrl({ baseUrl: config.baseUrl, path: authPagesPaths.emailVerification }),
|
||||
});
|
||||
|
||||
if (loginResult && 'twoFactorRedirect' in loginResult && loginResult.twoFactorRedirect) {
|
||||
props.onTwoFactorRequired();
|
||||
return;
|
||||
}
|
||||
|
||||
if (isEmailVerificationRequiredError({ error })) {
|
||||
navigate('/email-validation-required');
|
||||
}
|
||||
@@ -106,7 +274,7 @@ export const EmailLoginForm: Component = () => {
|
||||
</Show>
|
||||
</div>
|
||||
|
||||
<Button type="submit" class="w-full">{t('auth.login.form.submit')}</Button>
|
||||
<Button type="submit" class="w-full" isLoading={form.submitting}>{t('auth.login.form.submit')}</Button>
|
||||
|
||||
<div class="text-red-500 text-sm mt-4">{form.response.message}</div>
|
||||
|
||||
@@ -119,6 +287,8 @@ export const LoginPage: Component = () => {
|
||||
const { t } = useI18n();
|
||||
|
||||
const [getShowEmailLoginForm, setShowEmailLoginForm] = createSignal(false);
|
||||
// const [showTwoFactorForm, setShowTwoFactorForm] = createSignal(false);
|
||||
const [showTwoFactorForm, setShowTwoFactorForm] = createSignal(true); // For testing purposes
|
||||
|
||||
const loginWithProvider = async (provider: SsoProviderConfig) => {
|
||||
await authWithProvider({ provider, config });
|
||||
@@ -126,59 +296,69 @@ export const LoginPage: Component = () => {
|
||||
|
||||
const getHasSsoProviders = () => getEnabledSsoProviderConfigs({ config }).length > 0;
|
||||
|
||||
if (!config.auth.providers.email.isEnabled && !getHasSsoProviders()) {
|
||||
return <AuthLayout><NoAuthProviderWarning /></AuthLayout>;
|
||||
}
|
||||
const hasNoAuthProviders = !config.auth.providers.email.isEnabled && !getHasSsoProviders();
|
||||
|
||||
return (
|
||||
<AuthLayout>
|
||||
<div class="flex items-center justify-center h-full p-6 sm:pb-32">
|
||||
<div class="max-w-sm w-full">
|
||||
<h1 class="text-xl font-bold">{t('auth.login.title')}</h1>
|
||||
<p class="text-muted-foreground mt-1 mb-4">{t('auth.login.description')}</p>
|
||||
<Show when={!hasNoAuthProviders} fallback={<NoAuthProviderWarning />}>
|
||||
<div class="flex items-center justify-center h-full p-6 sm:pb-32">
|
||||
<div class="max-w-sm w-full">
|
||||
<Show
|
||||
when={!showTwoFactorForm()}
|
||||
fallback={(
|
||||
<>
|
||||
<h1 class="text-xl font-bold">{t('auth.login.two-factor.title')}</h1>
|
||||
<TwoFactorVerificationForm onBack={() => setShowTwoFactorForm(false)} />
|
||||
</>
|
||||
)}
|
||||
>
|
||||
<h1 class="text-xl font-bold">{t('auth.login.title')}</h1>
|
||||
<p class="text-muted-foreground mt-1 mb-4">{t('auth.login.description')}</p>
|
||||
|
||||
<Show when={config.auth.providers.email.isEnabled}>
|
||||
{getShowEmailLoginForm() || !getHasSsoProviders()
|
||||
? <EmailLoginForm />
|
||||
: (
|
||||
<Button onClick={() => setShowEmailLoginForm(true)} class="w-full">
|
||||
<div class="i-tabler-mail mr-2 size-4.5" />
|
||||
{t('auth.login.login-with-provider', { provider: 'Email' })}
|
||||
</Button>
|
||||
)}
|
||||
</Show>
|
||||
<Show when={config.auth.providers.email.isEnabled}>
|
||||
{getShowEmailLoginForm() || !getHasSsoProviders()
|
||||
? <EmailLoginForm onTwoFactorRequired={() => setShowTwoFactorForm(true)} />
|
||||
: (
|
||||
<Button onClick={() => setShowEmailLoginForm(true)} class="w-full">
|
||||
<div class="i-tabler-mail mr-2 size-4.5" />
|
||||
{t('auth.login.login-with-provider', { provider: 'Email' })}
|
||||
</Button>
|
||||
)}
|
||||
</Show>
|
||||
|
||||
<Show when={config.auth.providers.email.isEnabled && getHasSsoProviders()}>
|
||||
<Separator class="my-4" />
|
||||
</Show>
|
||||
<Show when={config.auth.providers.email.isEnabled && getHasSsoProviders()}>
|
||||
<Separator class="my-4" />
|
||||
</Show>
|
||||
|
||||
<Show when={getHasSsoProviders()}>
|
||||
<Show when={getHasSsoProviders()}>
|
||||
|
||||
<div class="flex flex-col gap-2">
|
||||
<For each={getEnabledSsoProviderConfigs({ config })}>
|
||||
{provider => (
|
||||
<SsoProviderButton
|
||||
name={provider.name}
|
||||
icon={provider.icon}
|
||||
onClick={() => loginWithProvider(provider)}
|
||||
label={t('auth.login.login-with-provider', { provider: provider.name })}
|
||||
/>
|
||||
)}
|
||||
</For>
|
||||
</div>
|
||||
</Show>
|
||||
<div class="flex flex-col gap-2">
|
||||
<For each={getEnabledSsoProviderConfigs({ config })}>
|
||||
{provider => (
|
||||
<SsoProviderButton
|
||||
name={provider.name}
|
||||
icon={provider.icon}
|
||||
onClick={() => loginWithProvider(provider)}
|
||||
label={t('auth.login.login-with-provider', { provider: provider.name })}
|
||||
/>
|
||||
)}
|
||||
</For>
|
||||
</div>
|
||||
</Show>
|
||||
|
||||
<p class="text-muted-foreground mt-4">
|
||||
{t('auth.login.no-account')}
|
||||
{' '}
|
||||
<Button variant="link" as={A} class="inline px-0" href="/register">
|
||||
{t('auth.login.register')}
|
||||
</Button>
|
||||
</p>
|
||||
<p class="text-muted-foreground mt-4">
|
||||
{t('auth.login.no-account')}
|
||||
{' '}
|
||||
<Button variant="link" as={A} class="inline px-0" href="/register">
|
||||
{t('auth.login.register')}
|
||||
</Button>
|
||||
</p>
|
||||
|
||||
<AuthLegalLinks />
|
||||
<AuthLegalLinks />
|
||||
</Show>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Show>
|
||||
</AuthLayout>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -9,7 +9,7 @@ import { createForm } from '@/modules/shared/form/form';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { TextField, TextFieldLabel, TextFieldRoot } from '@/modules/ui/components/textfield';
|
||||
import { AuthLayout } from '../../ui/layouts/auth-layout.component';
|
||||
import { forgetPassword } from '../auth.services';
|
||||
import { requestPasswordReset } from '../auth.services';
|
||||
import { OpenEmailProvider } from '../components/open-email-provider.component';
|
||||
|
||||
export const ResetPasswordForm: Component<{ onSubmit: (args: { email: string }) => Promise<void> }> = (props) => {
|
||||
@@ -64,7 +64,7 @@ export const RequestPasswordResetPage: Component = () => {
|
||||
});
|
||||
|
||||
const onPasswordResetRequested = async ({ email }: { email: string }) => {
|
||||
const { error } = await forgetPassword({
|
||||
const { error } = await requestPasswordReset({
|
||||
email,
|
||||
redirectTo: buildUrl({
|
||||
path: '/reset-password',
|
||||
|
||||
@@ -85,7 +85,7 @@ const inMemoryApiMock: Record<string, { handler: any }> = {
|
||||
id: 'usr_1',
|
||||
email: 'jane.doe@papra.app',
|
||||
name: 'Jane Doe',
|
||||
roles: [],
|
||||
permissions: [],
|
||||
},
|
||||
}),
|
||||
}),
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import type { DocumentActivityEvent } from './documents.types';
|
||||
import { IN_MS } from '../shared/utils/units';
|
||||
import { DEFAULT_DOCUMENT_ICON } from './documents.constants';
|
||||
|
||||
export const fileIcons: { mimeTypes: string[]; extensions: string[]; icon: string }[] = [
|
||||
{
|
||||
@@ -88,7 +89,7 @@ export function getDocumentIcon({
|
||||
document,
|
||||
iconByMimeTypeMap = iconByFileType,
|
||||
iconByExtensionMap = iconByExtension,
|
||||
defaultIcon = 'i-tabler-file',
|
||||
defaultIcon = DEFAULT_DOCUMENT_ICON,
|
||||
}: { document: {
|
||||
mimeType?: string;
|
||||
name?: string;
|
||||
|
||||
@@ -10,3 +10,5 @@ export const DOCUMENT_ACTIVITY_EVENTS = {
|
||||
export const DOCUMENT_ACTIVITY_EVENT_LIST = Object.values(DOCUMENT_ACTIVITY_EVENTS);
|
||||
|
||||
export const MAX_CONCURRENT_DOCUMENT_UPLOADS = 3;
|
||||
|
||||
export const DEFAULT_DOCUMENT_ICON = 'i-tabler-file';
|
||||
|
||||
@@ -9,4 +9,5 @@ export const locales = [
|
||||
{ key: 'es', name: 'Español' },
|
||||
{ key: 'it', name: 'Italiano' },
|
||||
{ key: 'nl', name: 'Nederlands' },
|
||||
{ key: 'zh', name: '简体中文' },
|
||||
] as const;
|
||||
|
||||
@@ -4,3 +4,10 @@ export function downloadFile({ url, fileName = 'file' }: { url: string; fileName
|
||||
link.download = fileName;
|
||||
link.click();
|
||||
}
|
||||
|
||||
export function downloadTextFile({ content, fileName = 'file.txt' }: { content: string; fileName?: string }) {
|
||||
const blob = new Blob([content], { type: 'text/plain' });
|
||||
const url = URL.createObjectURL(blob);
|
||||
downloadFile({ url, fileName });
|
||||
URL.revokeObjectURL(url);
|
||||
}
|
||||
|
||||
@@ -12,5 +12,11 @@ function baseHttpClient<A, R extends ResponseType = 'json'>({ url, baseUrl, ...r
|
||||
});
|
||||
}
|
||||
|
||||
// eslint-disable-next-line antfu/no-top-level-await
|
||||
export const httpClient = buildTimeConfig.isDemoMode ? await import('@/modules/demo/demo-http-client').then(m => m.demoHttpClient) : baseHttpClient;
|
||||
export async function httpClient<A, R extends ResponseType = 'json'>(options: HttpClientOptions<R>) {
|
||||
if (buildTimeConfig.isDemoMode) {
|
||||
const { demoHttpClient } = await import('@/modules/demo/demo-http-client');
|
||||
return demoHttpClient<A, R>(options);
|
||||
}
|
||||
|
||||
return baseHttpClient<A, R>(options);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,20 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { A } from '@solidjs/router';
|
||||
import { A, useLocation } from '@solidjs/router';
|
||||
import { useI18n } from '@/modules/i18n/i18n.provider';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
|
||||
export const NotFoundPage: Component = () => {
|
||||
const { t } = useI18n();
|
||||
const location = useLocation();
|
||||
|
||||
const getRedirectionUrl = () => {
|
||||
if (location.pathname.startsWith('/admin/') || location.pathname === '/admin') {
|
||||
return '/admin';
|
||||
}
|
||||
|
||||
return '/';
|
||||
};
|
||||
|
||||
return (
|
||||
<div class="h-screen flex flex-col items-center justify-center p-6">
|
||||
|
||||
@@ -14,7 +24,7 @@ export const NotFoundPage: Component = () => {
|
||||
<p class="text-muted-foreground">
|
||||
{t('not-found.description')}
|
||||
</p>
|
||||
<Button as={A} href="/" class="mt-4" variant="default">
|
||||
<Button as={A} href={getRedirectionUrl()} class="mt-4" variant="default">
|
||||
<div class="i-tabler-arrow-left mr-2" />
|
||||
{t('not-found.back-to-home')}
|
||||
</Button>
|
||||
|
||||
83
apps/papra-client/src/modules/ui/components/otp-field.tsx
Normal file
83
apps/papra-client/src/modules/ui/components/otp-field.tsx
Normal file
@@ -0,0 +1,83 @@
|
||||
import type { DynamicProps, RootProps } from '@corvu/otp-field';
|
||||
import type { Component, ComponentProps, ValidComponent } from 'solid-js';
|
||||
|
||||
import OtpField from '@corvu/otp-field';
|
||||
import { Show, splitProps } from 'solid-js';
|
||||
import { cn } from '@/modules/shared/style/cn';
|
||||
|
||||
export const REGEXP_ONLY_DIGITS = '^\\d*$';
|
||||
export const REGEXP_ONLY_CHARS = '^[a-zA-Z]*$';
|
||||
export const REGEXP_ONLY_DIGITS_AND_CHARS = '^[a-zA-Z0-9]*$';
|
||||
|
||||
type OTPFieldProps<T extends ValidComponent = 'div'> = RootProps<T> & { class?: string };
|
||||
|
||||
function OTPField<T extends ValidComponent = 'div'>(props: DynamicProps<T, OTPFieldProps<T>>) {
|
||||
const [local, others] = splitProps(props as OTPFieldProps, ['class']);
|
||||
return (
|
||||
<OtpField
|
||||
class={cn(
|
||||
'flex items-center gap-2 disabled:cursor-not-allowed has-[:disabled]:opacity-50',
|
||||
local.class,
|
||||
)}
|
||||
{...others}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
const OTPFieldInput = OtpField.Input;
|
||||
|
||||
const OTPFieldGroup: Component<ComponentProps<'div'>> = (props) => {
|
||||
const [local, others] = splitProps(props, ['class']);
|
||||
return <div class={cn('flex items-center', local.class)} {...others} />;
|
||||
};
|
||||
|
||||
const OTPFieldSlot: Component<ComponentProps<'div'> & { index: number }> = (props) => {
|
||||
const [local, others] = splitProps(props, ['class', 'index']);
|
||||
const context = OtpField.useContext();
|
||||
const char = () => context.value()[local.index];
|
||||
const showFakeCaret = () => context.value().length === local.index && context.isInserting();
|
||||
|
||||
return (
|
||||
<div
|
||||
class={cn(
|
||||
'group relative flex size-10 items-center justify-center border-y border-r border-input text-sm first:rounded-l-md first:border-l last:rounded-r-md',
|
||||
local.class,
|
||||
)}
|
||||
{...others}
|
||||
>
|
||||
<div
|
||||
class={cn(
|
||||
'absolute inset-0 z-10 transition-all group-first:rounded-l-md group-last:rounded-r-md',
|
||||
context.activeSlots().includes(local.index) && 'ring-2 ring-ring ring-offset-background',
|
||||
)}
|
||||
/>
|
||||
{char()}
|
||||
<Show when={showFakeCaret()}>
|
||||
<div class="pointer-events-none absolute inset-0 flex items-center justify-center">
|
||||
<div class="h-4 w-px animate-caret-blink bg-foreground duration-1000" />
|
||||
</div>
|
||||
</Show>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
const OTPFieldSeparator: Component<ComponentProps<'div'>> = (props) => {
|
||||
return (
|
||||
<div {...props}>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
class="size-6"
|
||||
>
|
||||
<circle cx="12.1" cy="12.1" r="1" />
|
||||
</svg>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export { OTPField, OTPFieldGroup, OTPFieldInput, OTPFieldSeparator, OTPFieldSlot };
|
||||
12
apps/papra-client/src/modules/ui/components/qr-code.tsx
Normal file
12
apps/papra-client/src/modules/ui/components/qr-code.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import type { Component, ComponentProps } from 'solid-js';
|
||||
import { splitProps } from 'solid-js';
|
||||
import { renderSVG } from 'uqr';
|
||||
|
||||
export const QrCode: Component<{ value: string } & ComponentProps<'div'>> = (props) => {
|
||||
const [local, rest] = splitProps(props, ['value']);
|
||||
|
||||
return (
|
||||
// eslint-disable-next-line solid/no-innerhtml
|
||||
<div innerHTML={renderSVG(local.value)} {...rest} />
|
||||
);
|
||||
};
|
||||
@@ -1,170 +0,0 @@
|
||||
import type { Component, ParentComponent } from 'solid-js';
|
||||
|
||||
import { A, useNavigate } from '@solidjs/router';
|
||||
|
||||
import { For, Show, Suspense } from 'solid-js';
|
||||
import { signOut } from '@/modules/auth/auth.services';
|
||||
import { cn } from '@/modules/shared/style/cn';
|
||||
import { useThemeStore } from '@/modules/theme/theme.store';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from '../components/dropdown-menu';
|
||||
import { Sheet, SheetContent, SheetTrigger } from '../components/sheet';
|
||||
|
||||
type MenuItem = {
|
||||
label: string;
|
||||
icon: string;
|
||||
href?: string;
|
||||
onClick?: () => void;
|
||||
};
|
||||
|
||||
const MenuItemButton: Component<MenuItem> = (props) => {
|
||||
return (
|
||||
<>
|
||||
<Show when={props.onClick}>
|
||||
<Button class="block" onClick={props.onClick} variant="ghost">
|
||||
<div class="flex items-center gap-2">
|
||||
<div class={cn(props.icon, 'size-5 text-muted-foreground')} />
|
||||
<div>{props.label}</div>
|
||||
</div>
|
||||
</Button>
|
||||
</Show>
|
||||
|
||||
<Show when={!props.onClick}>
|
||||
<Button class="block" as={A} href={props.href!} variant="ghost" activeClass="bg-accent/50! text-accent-foreground!">
|
||||
<div class="flex items-center gap-2">
|
||||
<div class={cn(props.icon, 'size-5 text-muted-foreground')} />
|
||||
<div>{props.label}</div>
|
||||
</div>
|
||||
</Button>
|
||||
</Show>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
const SideNav: Component = () => {
|
||||
const navigate = useNavigate();
|
||||
|
||||
const getMainMenuItems = () => [
|
||||
{
|
||||
label: 'Users',
|
||||
icon: 'i-tabler-users',
|
||||
href: '/admin/users',
|
||||
},
|
||||
];
|
||||
|
||||
const getFooterMenuItems = () => [
|
||||
{
|
||||
label: 'Settings',
|
||||
icon: 'i-tabler-settings',
|
||||
href: '/settings',
|
||||
},
|
||||
{
|
||||
label: 'Logout',
|
||||
icon: 'i-tabler-logout',
|
||||
onClick: async () => {
|
||||
await signOut();
|
||||
navigate('/login');
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<div class="h-full flex flex-col pb-6">
|
||||
<div class="h-60px flex items-center">
|
||||
<Button href="/admin" class="text-lg font-bold hover:no-underline gap-1" variant="link" as={A}>
|
||||
Papra
|
||||
<span class="font-normal text-base text-muted-foreground">
|
||||
Admin
|
||||
</span>
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<nav class="flex flex-col gap-0.5 mt-4 text-muted-foreground">
|
||||
<For each={getMainMenuItems()}>
|
||||
{menuItem => <MenuItemButton {...menuItem} />}
|
||||
</For>
|
||||
</nav>
|
||||
|
||||
<div class="flex-1" />
|
||||
|
||||
<nav class="flex flex-col gap-0.5 text-muted-foreground">
|
||||
<For each={getFooterMenuItems()}>
|
||||
{menuItem => <MenuItemButton {...menuItem} />}
|
||||
</For>
|
||||
</nav>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
const ThemeSwitcher: Component = () => {
|
||||
const themeStore = useThemeStore();
|
||||
|
||||
return (
|
||||
<>
|
||||
<DropdownMenuItem onClick={() => themeStore.setColorMode({ mode: 'light' })} class="flex items-center gap-2 cursor-pointer">
|
||||
<div class="i-tabler-sun text-lg" />
|
||||
Light Mode
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem onClick={() => themeStore.setColorMode({ mode: 'dark' })} class="flex items-center gap-2 cursor-pointer">
|
||||
<div class="i-tabler-moon text-lg" />
|
||||
Dark Mode
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem onClick={() => themeStore.setColorMode({ mode: 'system' })} class="flex items-center gap-2 cursor-pointer">
|
||||
<div class="i-tabler-device-laptop text-lg" />
|
||||
System Mode
|
||||
</DropdownMenuItem>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export const AdminLayout: ParentComponent = (props) => {
|
||||
const themeStore = useThemeStore();
|
||||
|
||||
return (
|
||||
<div class="flex flex-row h-screen min-h-0">
|
||||
<div class="w-64 border-r border-r-border px-2 flex-shrink-0 hidden md:block">
|
||||
<SideNav />
|
||||
</div>
|
||||
<div class="flex-1 min-h-0 flex flex-col">
|
||||
<div class="h-60px border-b flex items-center justify-between px-6">
|
||||
<div>
|
||||
<Sheet>
|
||||
<SheetTrigger>
|
||||
<Button variant="ghost" size="icon" class="md:hidden">
|
||||
<div class="i-tabler-menu-2 size-6" />
|
||||
</Button>
|
||||
</SheetTrigger>
|
||||
<SheetContent side="left">
|
||||
<SideNav />
|
||||
</SheetContent>
|
||||
</Sheet>
|
||||
</div>
|
||||
|
||||
<div class="flex items-center gap-2">
|
||||
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger as={Button} class="text-base" variant="outline" aria-label="Theme switcher">
|
||||
<div classList={{ 'i-tabler-moon': themeStore.getColorMode() === 'dark', 'i-tabler-sun': themeStore.getColorMode() === 'light' }} />
|
||||
<div class="ml-2 i-tabler-chevron-down text-muted-foreground text-sm" />
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent class="w-42">
|
||||
<ThemeSwitcher />
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
|
||||
<Button as={A} href="/renderings">
|
||||
<div class="i-tabler-home size-4 mr-1" />
|
||||
App
|
||||
</Button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex-1 overflow-auto max-w-screen">
|
||||
<Suspense>
|
||||
{props.children}
|
||||
</Suspense>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -13,6 +13,7 @@ import { cn } from '@/modules/shared/style/cn';
|
||||
import { UsageWarningCard } from '@/modules/subscriptions/components/usage-warning-card';
|
||||
import { useThemeStore } from '@/modules/theme/theme.store';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { useCurrentUser } from '@/modules/users/composables/useCurrentUser';
|
||||
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../components/dropdown-menu';
|
||||
import { Sheet, SheetContent, SheetTrigger } from '../components/sheet';
|
||||
|
||||
@@ -131,6 +132,7 @@ export const SidenavLayout: ParentComponent<{
|
||||
const navigate = useNavigate();
|
||||
const { getPendingInvitationsCount } = usePendingInvitationsCount();
|
||||
const { t } = useI18n();
|
||||
const { hasPermission } = useCurrentUser();
|
||||
|
||||
const { promptImport, uploadDocuments } = useDocumentUpload();
|
||||
|
||||
@@ -240,6 +242,12 @@ export const SidenavLayout: ParentComponent<{
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
|
||||
<Show when={hasPermission('bo:access')}>
|
||||
<Button as={A} href="/admin" variant="outline" class="hidden sm:flex" size="icon">
|
||||
<div class="i-tabler-settings size-4.5" />
|
||||
</Button>
|
||||
</Show>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex-1 overflow-auto max-w-screen">
|
||||
|
||||
30
apps/papra-client/src/modules/users/2fa.models.test.ts
Normal file
30
apps/papra-client/src/modules/users/2fa.models.test.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { getSecretFromTotpUri } from './2fa.models';
|
||||
|
||||
describe('2fa models', () => {
|
||||
describe('getSecretFromTotpUri', () => {
|
||||
test('in a valid TOTP URI the secret is a query parameter', () => {
|
||||
expect(
|
||||
getSecretFromTotpUri({
|
||||
totpUri: 'otpauth://totp/Papra:foo.bar%40gmail.com?secret=KFBVEMJQIVFW6RKMJNWTQ42OPBKG63DBK4YWSX2LG4REOQRXGZ3Q&issuer=Papra&digits=6&period=30',
|
||||
}),
|
||||
).to.equal('KFBVEMJQIVFW6RKMJNWTQ42OPBKG63DBK4YWSX2LG4REOQRXGZ3Q');
|
||||
});
|
||||
|
||||
test('if the TOTP URI does not have a secret query parameter, an empty string is returned', () => {
|
||||
expect(
|
||||
getSecretFromTotpUri({
|
||||
totpUri: 'otpauth://totp/Papra:foo.bar%40gmail.com?issuer=Papra&digits=6&period=30',
|
||||
}),
|
||||
).to.equal('');
|
||||
});
|
||||
|
||||
test('if the TOTP URI is malformed, an empty string is returned', () => {
|
||||
expect(
|
||||
getSecretFromTotpUri({
|
||||
totpUri: 'not-a-valid-uri',
|
||||
}),
|
||||
).to.equal('');
|
||||
});
|
||||
});
|
||||
});
|
||||
7
apps/papra-client/src/modules/users/2fa.models.ts
Normal file
7
apps/papra-client/src/modules/users/2fa.models.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export function getSecretFromTotpUri({ totpUri }: { totpUri: string }): string {
|
||||
try {
|
||||
return new URL(totpUri).searchParams.get('secret') ?? '';
|
||||
} catch {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,470 @@
|
||||
import type { Component } from 'solid-js';
|
||||
import { useMutation } from '@tanstack/solid-query';
|
||||
import { createSignal, For, Show } from 'solid-js';
|
||||
import * as v from 'valibot';
|
||||
import { twoFactor } from '@/modules/auth/auth.services';
|
||||
import { TotpField } from '@/modules/auth/components/verify-otp.component';
|
||||
import { useI18n } from '@/modules/i18n/i18n.provider';
|
||||
import { downloadTextFile } from '@/modules/shared/files/download';
|
||||
import { createForm } from '@/modules/shared/form/form';
|
||||
import { useI18nApiErrors } from '@/modules/shared/http/composables/i18n-api-errors';
|
||||
import { CopyButton } from '@/modules/shared/utils/copy';
|
||||
import { Badge } from '@/modules/ui/components/badge';
|
||||
import { Button } from '@/modules/ui/components/button';
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/modules/ui/components/card';
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogDescription,
|
||||
DialogFooter,
|
||||
DialogHeader,
|
||||
DialogTitle,
|
||||
} from '@/modules/ui/components/dialog';
|
||||
import { QrCode } from '@/modules/ui/components/qr-code';
|
||||
import { createToast } from '@/modules/ui/components/sonner';
|
||||
import { TextField, TextFieldErrorMessage, TextFieldLabel, TextFieldRoot } from '@/modules/ui/components/textfield';
|
||||
import { getSecretFromTotpUri } from '../2fa.models';
|
||||
|
||||
const EnableTwoFactorDialog: Component<{
|
||||
open: boolean;
|
||||
onOpenChange: (open: boolean) => void;
|
||||
onSuccess: (data: { totpURI: string; backupCodes: string[] }) => void;
|
||||
}> = (props) => {
|
||||
const { t } = useI18n();
|
||||
|
||||
const passwordSchema = v.pipe(v.string(), v.minLength(1, t('user.settings.two-factor.enable-dialog.password.required')));
|
||||
|
||||
const { form, Form, Field } = createForm({
|
||||
schema: v.object({
|
||||
password: passwordSchema,
|
||||
}),
|
||||
initialValues: {
|
||||
password: '',
|
||||
},
|
||||
onSubmit: async ({ password }) => {
|
||||
const { data, error } = await twoFactor.enable({ password });
|
||||
|
||||
if (error) {
|
||||
createToast({ type: 'error', message: error.message });
|
||||
return;
|
||||
}
|
||||
|
||||
const { totpURI, backupCodes } = data;
|
||||
|
||||
props.onSuccess({ totpURI, backupCodes });
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<Dialog open={props.open} onOpenChange={props.onOpenChange}>
|
||||
<DialogContent>
|
||||
<DialogHeader>
|
||||
<DialogTitle>{t('user.settings.two-factor.enable-dialog.title')}</DialogTitle>
|
||||
<DialogDescription>{t('user.settings.two-factor.enable-dialog.description')}</DialogDescription>
|
||||
</DialogHeader>
|
||||
<Form>
|
||||
<Field name="password">
|
||||
{(field, inputProps) => (
|
||||
<TextFieldRoot>
|
||||
<TextFieldLabel for="enable-password">
|
||||
{t('user.settings.two-factor.enable-dialog.password.label')}
|
||||
</TextFieldLabel>
|
||||
<TextField
|
||||
type="password"
|
||||
id="enable-password"
|
||||
placeholder={t('user.settings.two-factor.enable-dialog.password.placeholder')}
|
||||
{...inputProps}
|
||||
value={field.value}
|
||||
aria-invalid={Boolean(field.error)}
|
||||
/>
|
||||
{field.error && <TextFieldErrorMessage>{field.error}</TextFieldErrorMessage>}
|
||||
</TextFieldRoot>
|
||||
)}
|
||||
</Field>
|
||||
<DialogFooter class="mt-6">
|
||||
<Button variant="outline" onClick={() => props.onOpenChange(false)}>
|
||||
{t('user.settings.two-factor.enable-dialog.cancel')}
|
||||
</Button>
|
||||
<Button type="submit" isLoading={form.submitting}>
|
||||
{t('user.settings.two-factor.enable-dialog.submit')}
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</Form>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
);
|
||||
};
|
||||
|
||||
const SetupTwoFactorDialog: Component<{
|
||||
open: boolean;
|
||||
onOpenChange: (open: boolean) => void;
|
||||
totpUri: string;
|
||||
onSuccess: () => void;
|
||||
}> = (props) => {
|
||||
const { t } = useI18n();
|
||||
const getTotpSecret = () => getSecretFromTotpUri({ totpUri: props.totpUri });
|
||||
const [getTotpCode, setTotpCode] = createSignal<string>('');
|
||||
const { createI18nApiError } = useI18nApiErrors();
|
||||
|
||||
const verifyMutation = useMutation(() => ({
|
||||
mutationFn: async ({ totpCode }: { totpCode: string }) => {
|
||||
const { error } = await twoFactor.verifyTotp({ code: totpCode });
|
||||
if (error) {
|
||||
throw createI18nApiError({ error });
|
||||
}
|
||||
},
|
||||
onSuccess: () => {
|
||||
props.onSuccess();
|
||||
createToast({ type: 'success', message: t('user.settings.two-factor.enabled') });
|
||||
},
|
||||
}));
|
||||
|
||||
return (
|
||||
<Dialog
|
||||
open={props.open}
|
||||
onOpenChange={props.onOpenChange}
|
||||
>
|
||||
<DialogContent>
|
||||
<DialogHeader>
|
||||
<DialogTitle>{t('user.settings.two-factor.setup-dialog.title')}</DialogTitle>
|
||||
</DialogHeader>
|
||||
<div>
|
||||
|
||||
<h3 class="font-semibold">{t('user.settings.two-factor.setup-dialog.step1.title')}</h3>
|
||||
<p class="mb-4 text-sm text-muted-foreground">
|
||||
{t('user.settings.two-factor.setup-dialog.step1.description')}
|
||||
</p>
|
||||
|
||||
<div class="flex flex-col items-center">
|
||||
<QrCode value={props.totpUri} class="w-full max-w-48" />
|
||||
|
||||
<CopyButton text={getTotpSecret()} variant="outline" label={t('user.settings.two-factor.setup-dialog.copy-setup-key')} size="sm" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<h3 class="mt-8 font-semibold">{t('user.settings.two-factor.setup-dialog.step2.title')}</h3>
|
||||
<p class="mb-4 text-sm text-muted-foreground">
|
||||
{t('user.settings.two-factor.setup-dialog.step2.description')}
|
||||
</p>
|
||||
|
||||
<div class="mt-4 flex justify-center">
|
||||
<TotpField value={getTotpCode()} onValueChange={setTotpCode} />
|
||||
</div>
|
||||
|
||||
<Show when={verifyMutation.error}>{getError => (<div class="text-red">{getError().message}</div>)}</Show>
|
||||
|
||||
<div class="flex md:flex-row flex-col justify-end gap-2 mt-6">
|
||||
<Button variant="outline" onClick={() => props.onOpenChange(false)}>
|
||||
{t('user.settings.two-factor.setup-dialog.cancel')}
|
||||
</Button>
|
||||
<Button type="submit" isLoading={verifyMutation.isPending} onClick={() => verifyMutation.mutate({ totpCode: getTotpCode() })}>
|
||||
{t('user.settings.two-factor.setup-dialog.verify')}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
);
|
||||
};
|
||||
|
||||
const BackupCodesDialog: Component<{
|
||||
open: boolean;
|
||||
onOpenChange: (open: boolean) => void;
|
||||
backupCodes: string[];
|
||||
}> = (props) => {
|
||||
const { t } = useI18n();
|
||||
|
||||
return (
|
||||
<Dialog open={props.open} onOpenChange={props.onOpenChange}>
|
||||
<DialogContent>
|
||||
<DialogHeader>
|
||||
<DialogTitle>{t('user.settings.two-factor.backup-codes-dialog.title')}</DialogTitle>
|
||||
<DialogDescription>{t('user.settings.two-factor.backup-codes-dialog.description')}</DialogDescription>
|
||||
</DialogHeader>
|
||||
<div>
|
||||
<div class="p-4 rounded-md bg-background border">
|
||||
<div class="grid grid-cols-2 gap-2 font-mono text-sm">
|
||||
<For each={props.backupCodes}>
|
||||
{code => (
|
||||
<div class="text-center">{code}</div>
|
||||
)}
|
||||
</For>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex justify-center mt-2 md:flex-row flex-col gap-2">
|
||||
<CopyButton
|
||||
text={props.backupCodes.join('\n')}
|
||||
label={t('user.settings.two-factor.backup-codes-dialog.copy')}
|
||||
variant="outline"
|
||||
size="sm"
|
||||
/>
|
||||
|
||||
<Button
|
||||
variant="outline"
|
||||
size="sm"
|
||||
onClick={() => downloadTextFile({
|
||||
content: props.backupCodes.join('\n'),
|
||||
fileName: t('user.settings.two-factor.backup-codes-dialog.download-filename'),
|
||||
})}
|
||||
>
|
||||
<div class="i-tabler-download size-4 mr-2" />
|
||||
{t('user.settings.two-factor.backup-codes-dialog.download')}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
<DialogFooter class="mt-4">
|
||||
<Button onClick={() => props.onOpenChange(false)}>
|
||||
{t('user.settings.two-factor.backup-codes-dialog.close')}
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
);
|
||||
};
|
||||
|
||||
const DisableTwoFactorDialog: Component<{
|
||||
open: boolean;
|
||||
onOpenChange: (open: boolean) => void;
|
||||
onSuccess: () => void;
|
||||
}> = (props) => {
|
||||
const { t } = useI18n();
|
||||
|
||||
const passwordSchema = v.pipe(v.string(), v.minLength(1, t('user.settings.two-factor.disable-dialog.password.required')));
|
||||
|
||||
const { form, Form, Field } = createForm({
|
||||
schema: v.object({
|
||||
password: passwordSchema,
|
||||
}),
|
||||
initialValues: {
|
||||
password: '',
|
||||
},
|
||||
onSubmit: async ({ password }) => {
|
||||
const { error } = await twoFactor.disable({ password });
|
||||
|
||||
if (error) {
|
||||
createToast({ type: 'error', message: error.message });
|
||||
return;
|
||||
}
|
||||
|
||||
props.onSuccess();
|
||||
createToast({ type: 'success', message: t('user.settings.two-factor.disabled') });
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<Dialog open={props.open} onOpenChange={props.onOpenChange}>
|
||||
<DialogContent>
|
||||
<DialogHeader>
|
||||
<DialogTitle>{t('user.settings.two-factor.disable-dialog.title')}</DialogTitle>
|
||||
<DialogDescription>{t('user.settings.two-factor.disable-dialog.description')}</DialogDescription>
|
||||
</DialogHeader>
|
||||
<Form>
|
||||
<Field name="password">
|
||||
{(field, inputProps) => (
|
||||
<TextFieldRoot>
|
||||
<TextFieldLabel for="disable-password">
|
||||
{t('user.settings.two-factor.disable-dialog.password.label')}
|
||||
</TextFieldLabel>
|
||||
<TextField
|
||||
type="password"
|
||||
id="disable-password"
|
||||
placeholder={t('user.settings.two-factor.disable-dialog.password.placeholder')}
|
||||
{...inputProps}
|
||||
value={field.value}
|
||||
aria-invalid={Boolean(field.error)}
|
||||
/>
|
||||
{field.error && <TextFieldErrorMessage>{field.error}</TextFieldErrorMessage>}
|
||||
</TextFieldRoot>
|
||||
)}
|
||||
</Field>
|
||||
<DialogFooter class="mt-6">
|
||||
<Button variant="outline" onClick={() => props.onOpenChange(false)}>
|
||||
{t('user.settings.two-factor.disable-dialog.cancel')}
|
||||
</Button>
|
||||
<Button type="submit" variant="destructive" isLoading={form.submitting}>
|
||||
{t('user.settings.two-factor.disable-dialog.submit')}
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</Form>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
);
|
||||
};
|
||||
|
||||
const RegenerateBackupCodesDialog: Component<{
|
||||
open: boolean;
|
||||
onOpenChange: (open: boolean) => void;
|
||||
onSuccess: (backupCodes: string[]) => void;
|
||||
}> = (props) => {
|
||||
const { t } = useI18n();
|
||||
|
||||
const passwordSchema = v.pipe(v.string(), v.minLength(1, t('user.settings.two-factor.regenerate-dialog.password.required')));
|
||||
|
||||
const { form, Form, Field } = createForm({
|
||||
schema: v.object({
|
||||
password: passwordSchema,
|
||||
}),
|
||||
initialValues: {
|
||||
password: '',
|
||||
},
|
||||
onSubmit: async ({ password }) => {
|
||||
const { data, error } = await twoFactor.generateBackupCodes({ password });
|
||||
|
||||
if (error) {
|
||||
createToast({ type: 'error', message: error.message });
|
||||
return;
|
||||
}
|
||||
|
||||
if (data?.backupCodes) {
|
||||
props.onSuccess(data.backupCodes);
|
||||
createToast({ type: 'success', message: t('user.settings.two-factor.codes-regenerated') });
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<Dialog open={props.open} onOpenChange={props.onOpenChange}>
|
||||
<DialogContent>
|
||||
<DialogHeader>
|
||||
<DialogTitle>{t('user.settings.two-factor.regenerate-dialog.title')}</DialogTitle>
|
||||
<DialogDescription>{t('user.settings.two-factor.regenerate-dialog.description')}</DialogDescription>
|
||||
</DialogHeader>
|
||||
<Form>
|
||||
<Field name="password">
|
||||
{(field, inputProps) => (
|
||||
<TextFieldRoot>
|
||||
<TextFieldLabel for="regenerate-password">
|
||||
{t('user.settings.two-factor.regenerate-dialog.password.label')}
|
||||
</TextFieldLabel>
|
||||
<TextField
|
||||
type="password"
|
||||
id="regenerate-password"
|
||||
placeholder={t('user.settings.two-factor.regenerate-dialog.password.placeholder')}
|
||||
{...inputProps}
|
||||
value={field.value}
|
||||
aria-invalid={Boolean(field.error)}
|
||||
/>
|
||||
{field.error && <TextFieldErrorMessage>{field.error}</TextFieldErrorMessage>}
|
||||
</TextFieldRoot>
|
||||
)}
|
||||
</Field>
|
||||
<DialogFooter class="mt-6">
|
||||
<Button variant="outline" onClick={() => props.onOpenChange(false)}>
|
||||
{t('user.settings.two-factor.regenerate-dialog.cancel')}
|
||||
</Button>
|
||||
<Button type="submit" isLoading={form.submitting}>
|
||||
{t('user.settings.two-factor.regenerate-dialog.submit')}
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</Form>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
);
|
||||
};
|
||||
|
||||
type DialogState = 'none' | 'enable-password' | 'setup-qr' | 'backup-codes' | 'disable-password' | 'regenerate-codes';
|
||||
|
||||
export const TwoFactorCard: Component<{ twoFactorEnabled: boolean; onUpdate: () => void }> = (props) => {
|
||||
const { t } = useI18n();
|
||||
const [dialogState, setDialogState] = createSignal<DialogState>('none');
|
||||
const [totpUri, setTotpUri] = createSignal<string>('');
|
||||
const [backupCodes, setBackupCodes] = createSignal<string[]>([]);
|
||||
|
||||
const handleEnableSuccess = (data: { totpURI: string; backupCodes: string[] }) => {
|
||||
setTotpUri(data.totpURI);
|
||||
setBackupCodes(data.backupCodes);
|
||||
setDialogState('setup-qr');
|
||||
};
|
||||
|
||||
const handleSetupSuccess = () => {
|
||||
setDialogState('backup-codes');
|
||||
props.onUpdate();
|
||||
createToast({ type: 'success', message: t('user.settings.two-factor.enabled') });
|
||||
};
|
||||
|
||||
const handleDisableSuccess = () => {
|
||||
setDialogState('none');
|
||||
props.onUpdate();
|
||||
};
|
||||
|
||||
const handleRegenerateSuccess = (codes: string[]) => {
|
||||
setBackupCodes(codes);
|
||||
setDialogState('backup-codes');
|
||||
};
|
||||
|
||||
const closeDialog = () => {
|
||||
setDialogState('none');
|
||||
setTotpUri('');
|
||||
setBackupCodes([]);
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<Card>
|
||||
<CardHeader class="border-b">
|
||||
<div class="flex items-center justify-between">
|
||||
<div>
|
||||
<CardTitle>{t('user.settings.two-factor.title')}</CardTitle>
|
||||
<CardDescription>{t('user.settings.two-factor.description')}</CardDescription>
|
||||
</div>
|
||||
<Badge variant={props.twoFactorEnabled ? 'default' : 'secondary'}>
|
||||
{props.twoFactorEnabled
|
||||
? t('user.settings.two-factor.status.enabled')
|
||||
: t('user.settings.two-factor.status.disabled')}
|
||||
</Badge>
|
||||
</div>
|
||||
</CardHeader>
|
||||
<CardContent class="pt-6">
|
||||
<div class="flex flex-row justify-end gap-3">
|
||||
<Show
|
||||
when={props.twoFactorEnabled}
|
||||
fallback={(
|
||||
<Button onClick={() => setDialogState('enable-password')}>
|
||||
{t('user.settings.two-factor.enable-button')}
|
||||
</Button>
|
||||
)}
|
||||
>
|
||||
<Button variant="outline" onClick={() => setDialogState('regenerate-codes')}>
|
||||
{t('user.settings.two-factor.regenerate-codes-button')}
|
||||
</Button>
|
||||
<Button variant="destructive" onClick={() => setDialogState('disable-password')}>
|
||||
{t('user.settings.two-factor.disable-button')}
|
||||
</Button>
|
||||
</Show>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<EnableTwoFactorDialog
|
||||
open={dialogState() === 'enable-password'}
|
||||
onOpenChange={open => !open && closeDialog()}
|
||||
onSuccess={handleEnableSuccess}
|
||||
/>
|
||||
|
||||
<SetupTwoFactorDialog
|
||||
open={dialogState() === 'setup-qr'}
|
||||
onOpenChange={open => !open && closeDialog()}
|
||||
totpUri={totpUri()}
|
||||
onSuccess={handleSetupSuccess}
|
||||
/>
|
||||
|
||||
<BackupCodesDialog
|
||||
open={dialogState() === 'backup-codes'}
|
||||
onOpenChange={open => !open && closeDialog()}
|
||||
backupCodes={backupCodes()}
|
||||
/>
|
||||
|
||||
<DisableTwoFactorDialog
|
||||
open={dialogState() === 'disable-password'}
|
||||
onOpenChange={open => !open && closeDialog()}
|
||||
onSuccess={handleDisableSuccess}
|
||||
/>
|
||||
|
||||
<RegenerateBackupCodesDialog
|
||||
open={dialogState() === 'regenerate-codes'}
|
||||
onOpenChange={open => !open && closeDialog()}
|
||||
onSuccess={handleRegenerateSuccess}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
@@ -11,6 +11,7 @@ const currentUserContext = createContext<{
|
||||
|
||||
getLatestOrganizationId: () => string | null;
|
||||
setLatestOrganizationId: (organizationId: string) => void;
|
||||
hasPermission: (permission: string) => boolean;
|
||||
}>();
|
||||
|
||||
export function useCurrentUser() {
|
||||
@@ -42,6 +43,7 @@ export const CurrentUserProvider: ParentComponent = (props) => {
|
||||
|
||||
getLatestOrganizationId,
|
||||
setLatestOrganizationId,
|
||||
hasPermission: (permission: string) => query.data?.user.permissions?.includes(permission) ?? false,
|
||||
}}
|
||||
>
|
||||
{props.children}
|
||||
|
||||
@@ -10,6 +10,7 @@ import { Button } from '@/modules/ui/components/button';
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/modules/ui/components/card';
|
||||
import { createToast } from '@/modules/ui/components/sonner';
|
||||
import { TextField, TextFieldLabel, TextFieldRoot } from '@/modules/ui/components/textfield';
|
||||
import { TwoFactorCard } from '../components/two-factor-card';
|
||||
import { useUpdateCurrentUser } from '../users.composables';
|
||||
import { nameSchema } from '../users.schemas';
|
||||
import { fetchCurrentUser } from '../users.services';
|
||||
@@ -147,6 +148,7 @@ export const UserSettingsPage: Component = () => {
|
||||
<div class="mt-6 flex flex-col gap-6">
|
||||
<UserEmailCard email={getUser().email} />
|
||||
<UpdateFullNameCard name={getUser().name} />
|
||||
<TwoFactorCard twoFactorEnabled={getUser().twoFactorEnabled} onUpdate={() => query.refetch()} />
|
||||
<LogoutCard />
|
||||
</div>
|
||||
</>
|
||||
|
||||
@@ -1,21 +1,14 @@
|
||||
export type UserMe = {
|
||||
id: string;
|
||||
email: string;
|
||||
planId: string;
|
||||
name: string;
|
||||
roles: string[];
|
||||
};
|
||||
|
||||
export type User = {
|
||||
id: string;
|
||||
email: string;
|
||||
name: string;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
provider: string;
|
||||
maxApiKeys: number;
|
||||
apiKeysCount: number;
|
||||
isEmailVerified: boolean;
|
||||
customerId: string | null;
|
||||
planId: string;
|
||||
emailVerified: boolean;
|
||||
maxOrganizationCount: number | null;
|
||||
twoFactorEnabled: boolean;
|
||||
};
|
||||
|
||||
export type UserMe = User & {
|
||||
permissions: string[];
|
||||
};
|
||||
|
||||
@@ -2,6 +2,7 @@ import type { RouteDefinition } from '@solidjs/router';
|
||||
import { Navigate, useParams } from '@solidjs/router';
|
||||
import { useQuery } from '@tanstack/solid-query';
|
||||
import { Match, Show, Suspense, Switch } from 'solid-js';
|
||||
import { adminRoutes } from './modules/admin/admin.routes';
|
||||
import { ApiKeysPage } from './modules/api-keys/pages/api-keys.page';
|
||||
import { CreateApiKeyPage } from './modules/api-keys/pages/create-api-key.page';
|
||||
import { authPagesPaths } from './modules/auth/auth.constants';
|
||||
@@ -197,6 +198,7 @@ export const routes: RouteDefinition[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
adminRoutes,
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -9,6 +9,7 @@ import {
|
||||
import { presetAnimations } from 'unocss-preset-animations';
|
||||
import { ssoProviders } from './src/modules/auth/auth.constants';
|
||||
import { documentActivityIcon, fileIcons } from './src/modules/documents/document.models';
|
||||
import { DEFAULT_DOCUMENT_ICON } from './src/modules/documents/documents.constants';
|
||||
|
||||
export default defineConfig({
|
||||
presets: [
|
||||
@@ -116,6 +117,7 @@ export default defineConfig({
|
||||
},
|
||||
safelist: [
|
||||
...new Set([
|
||||
DEFAULT_DOCUMENT_ICON,
|
||||
...fileIcons.map(({ icon }) => icon),
|
||||
...Object.values(documentActivityIcon),
|
||||
...ssoProviders.map(({ icon }) => icon),
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
"dev:reset": "pnpm clean:all && pnpm migrate:up",
|
||||
"script:send-intake-email": "tsx --env-file-if-exists=.env src/scripts/send-intake-email.script.ts | crowlog-pretty",
|
||||
"stripe:webhook": "stripe listen --forward-to localhost:1221/api/stripe/webhook",
|
||||
"script:make-user-admin": "tsx --env-file-if-exists=.env src/scripts/make-user-admin.script.ts",
|
||||
"maintenance:encrypt-all-documents": "tsx --env-file-if-exists=.env src/scripts/encrypt-all-documents.script.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -47,9 +48,9 @@
|
||||
"@cadence-mq/driver-memory": "^0.2.0",
|
||||
"@corentinth/chisels": "catalog:",
|
||||
"@corentinth/friendly-ids": "^0.0.1",
|
||||
"@crowlog/async-context-plugin": "^2.0.0",
|
||||
"@crowlog/async-context-plugin": "^2.1.0",
|
||||
"@crowlog/logger": "^2.1.0",
|
||||
"@hono/node-server": "^1.14.4",
|
||||
"@hono/node-server": "^1.19.6",
|
||||
"@libsql/client": "^0.14.0",
|
||||
"@owlrelay/api-sdk": "^0.0.2",
|
||||
"@owlrelay/webhook": "^0.0.3",
|
||||
@@ -65,7 +66,7 @@
|
||||
"drizzle-kit": "^0.30.6",
|
||||
"drizzle-orm": "^0.38.4",
|
||||
"figue": "^3.1.1",
|
||||
"hono": "^4.8.2",
|
||||
"hono": "^4.10.7",
|
||||
"lodash-es": "^4.17.21",
|
||||
"mime-types": "^3.0.1",
|
||||
"nanoid": "^5.1.5",
|
||||
|
||||
@@ -1,98 +1,6 @@
|
||||
/* eslint-disable antfu/no-top-level-await */
|
||||
import process, { env } from 'node:process';
|
||||
import { serve } from '@hono/node-server';
|
||||
import { setupDatabase } from './modules/app/database/database';
|
||||
import { ensureLocalDatabaseDirectoryExists } from './modules/app/database/database.services';
|
||||
import { createGracefulShutdownService } from './modules/app/graceful-shutdown/graceful-shutdown.services';
|
||||
import { createServer } from './modules/app/server';
|
||||
import { parseConfig } from './modules/config/config';
|
||||
import { createDocumentStorageService } from './modules/documents/storage/documents.storage.services';
|
||||
import { createIngestionFolderWatcher } from './modules/ingestion-folders/ingestion-folders.usecases';
|
||||
import { addToGlobalLogContext, createLogger } from './modules/shared/logger/logger';
|
||||
import { registerTaskDefinitions } from './modules/tasks/tasks.definitions';
|
||||
import { createTaskServices } from './modules/tasks/tasks.services';
|
||||
import { registerShutdownHooks } from './modules/app/graceful-shutdown/graceful-shutdown.usecases';
|
||||
import { startApp } from './start';
|
||||
|
||||
const logger = createLogger({ namespace: 'app-server' });
|
||||
|
||||
const { config } = await parseConfig({ env });
|
||||
|
||||
addToGlobalLogContext({ processMode: config.processMode });
|
||||
|
||||
const isWebMode = config.processMode === 'all' || config.processMode === 'web';
|
||||
const isWorkerMode = config.processMode === 'all' || config.processMode === 'worker';
|
||||
|
||||
logger.info({ processMode: config.processMode, isWebMode, isWorkerMode }, 'Starting application');
|
||||
|
||||
// Shutdown callback collector
|
||||
const shutdownService = createGracefulShutdownService({ logger });
|
||||
const { registerShutdownHandler } = shutdownService;
|
||||
|
||||
await ensureLocalDatabaseDirectoryExists({ config });
|
||||
const { db } = setupDatabase({ ...config.database, registerShutdownHandler });
|
||||
|
||||
const documentsStorageService = createDocumentStorageService({ documentStorageConfig: config.documentsStorage });
|
||||
|
||||
const taskServices = createTaskServices({ config });
|
||||
await taskServices.initialize();
|
||||
|
||||
if (isWebMode) {
|
||||
const { app } = await createServer({ config, db, taskServices, documentsStorageService });
|
||||
|
||||
const server = serve(
|
||||
{
|
||||
fetch: app.fetch,
|
||||
port: config.server.port,
|
||||
hostname: config.server.hostname,
|
||||
},
|
||||
({ port }) => logger.info({ port }, 'Server started'),
|
||||
);
|
||||
|
||||
registerShutdownHandler({
|
||||
id: 'web-server-close',
|
||||
handler: () => {
|
||||
server.close();
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
if (isWorkerMode) {
|
||||
if (config.ingestionFolder.isEnabled) {
|
||||
const { startWatchingIngestionFolders } = createIngestionFolderWatcher({
|
||||
taskServices,
|
||||
config,
|
||||
db,
|
||||
documentsStorageService,
|
||||
});
|
||||
|
||||
await startWatchingIngestionFolders();
|
||||
}
|
||||
|
||||
await registerTaskDefinitions({ taskServices, db, config, documentsStorageService });
|
||||
|
||||
taskServices.start();
|
||||
logger.info('Worker started');
|
||||
}
|
||||
|
||||
// Global error handlers
|
||||
process.on('uncaughtException', (error) => {
|
||||
logger.error({ error }, 'Uncaught exception');
|
||||
setTimeout(() => process.exit(1), 1000); // Give the logger time to flush before exiting
|
||||
});
|
||||
|
||||
process.on('unhandledRejection', (error) => {
|
||||
logger.error({ error }, 'Unhandled promise rejection');
|
||||
setTimeout(() => process.exit(1), 1000); // Give the logger time to flush before exiting
|
||||
});
|
||||
|
||||
// Graceful shutdown handler
|
||||
async function gracefulShutdown(signal: string) {
|
||||
logger.info({ signal }, 'Received shutdown signal, shutting down gracefully...');
|
||||
|
||||
await shutdownService.executeShutdownHandlers();
|
||||
|
||||
logger.info('Shutdown complete, exiting process');
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
process.on('SIGINT', () => void gracefulShutdown('SIGINT'));
|
||||
process.on('SIGTERM', () => void gracefulShutdown('SIGTERM'));
|
||||
const { shutdownServices } = await startApp();
|
||||
registerShutdownHooks({ shutdownServices });
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
import type { Migration } from '../migrations.types';
|
||||
import { sql } from 'drizzle-orm';
|
||||
|
||||
export const dropFts5TriggersMigration = {
|
||||
name: 'drop-fts-5-triggers',
|
||||
|
||||
up: async ({ db }) => {
|
||||
await db.batch([
|
||||
db.run(sql`DROP TRIGGER IF EXISTS trigger_documents_fts_insert`),
|
||||
db.run(sql`DROP TRIGGER IF EXISTS trigger_documents_fts_update`),
|
||||
db.run(sql`DROP TRIGGER IF EXISTS trigger_documents_fts_delete`),
|
||||
]);
|
||||
},
|
||||
|
||||
down: async ({ db }) => {
|
||||
await db.batch([
|
||||
db.run(sql`
|
||||
CREATE TRIGGER IF NOT EXISTS trigger_documents_fts_insert AFTER INSERT ON documents BEGIN
|
||||
INSERT INTO documents_fts(id, name, original_name, content) VALUES (new.id, new.name, new.original_name, new.content);
|
||||
END
|
||||
`),
|
||||
db.run(sql`
|
||||
CREATE TRIGGER IF NOT EXISTS trigger_documents_fts_update AFTER UPDATE ON documents BEGIN
|
||||
UPDATE documents_fts SET name = new.name, original_name = new.original_name, content = new.content WHERE id = new.id;
|
||||
END
|
||||
`),
|
||||
db.run(sql`
|
||||
CREATE TRIGGER IF NOT EXISTS trigger_documents_fts_delete AFTER DELETE ON documents BEGIN
|
||||
DELETE FROM documents_fts WHERE id = old.id;
|
||||
END
|
||||
`),
|
||||
]);
|
||||
},
|
||||
} satisfies Migration;
|
||||
@@ -0,0 +1,31 @@
|
||||
import type { Migration } from '../migrations.types';
|
||||
import { sql } from 'drizzle-orm';
|
||||
|
||||
export const twoFactorAuthenticationMigration = {
|
||||
name: 'two-factor-authentication',
|
||||
|
||||
up: async ({ db }) => {
|
||||
await db.batch([
|
||||
db.run(sql`
|
||||
CREATE TABLE "auth_two_factor" (
|
||||
"id" text PRIMARY KEY NOT NULL,
|
||||
"created_at" integer NOT NULL,
|
||||
"updated_at" integer NOT NULL,
|
||||
"user_id" text,
|
||||
"secret" text,
|
||||
"backup_codes" text,
|
||||
FOREIGN KEY ("user_id") REFERENCES "users"("id") ON UPDATE cascade ON DELETE cascade
|
||||
);
|
||||
`),
|
||||
|
||||
db.run(sql`ALTER TABLE "users" ADD "two_factor_enabled" integer DEFAULT false NOT NULL;`),
|
||||
]);
|
||||
},
|
||||
|
||||
down: async ({ db }) => {
|
||||
await db.batch([
|
||||
db.run(sql`DROP TABLE "auth_two_factor";`),
|
||||
db.run(sql`ALTER TABLE "users" DROP COLUMN "two_factor_enabled";`),
|
||||
]);
|
||||
},
|
||||
} satisfies Migration;
|
||||
2170
apps/papra-server/src/migrations/meta/0012_snapshot.json
Normal file
2170
apps/papra-server/src/migrations/meta/0012_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -85,6 +85,13 @@
|
||||
"when": 1761645190314,
|
||||
"tag": "0011_tagging-rule-condition-match-mode",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 12,
|
||||
"version": "6",
|
||||
"when": 1766411483931,
|
||||
"tag": "0012_two-factor-authentication",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -121,10 +121,7 @@ describe('migrations registry', () => {
|
||||
CREATE TABLE "users" ( "id" text PRIMARY KEY NOT NULL, "created_at" integer NOT NULL, "updated_at" integer NOT NULL, "email" text NOT NULL, "email_verified" integer DEFAULT false NOT NULL, "name" text, "image" text, "max_organization_count" integer );
|
||||
CREATE TABLE "webhook_deliveries" ( "id" text PRIMARY KEY NOT NULL, "created_at" integer NOT NULL, "updated_at" integer NOT NULL, "webhook_id" text NOT NULL, "event_name" text NOT NULL, "request_payload" text NOT NULL, "response_payload" text NOT NULL, "response_status" integer NOT NULL, FOREIGN KEY ("webhook_id") REFERENCES "webhooks"("id") ON UPDATE cascade ON DELETE cascade );
|
||||
CREATE TABLE "webhook_events" ( "id" text PRIMARY KEY NOT NULL, "created_at" integer NOT NULL, "updated_at" integer NOT NULL, "webhook_id" text NOT NULL, "event_name" text NOT NULL, FOREIGN KEY ("webhook_id") REFERENCES "webhooks"("id") ON UPDATE cascade ON DELETE cascade );
|
||||
CREATE TABLE "webhooks" ( "id" text PRIMARY KEY NOT NULL, "created_at" integer NOT NULL, "updated_at" integer NOT NULL, "name" text NOT NULL, "url" text NOT NULL, "secret" text, "enabled" integer DEFAULT true NOT NULL, "created_by" text, "organization_id" text, FOREIGN KEY ("created_by") REFERENCES "users"("id") ON UPDATE cascade ON DELETE set null, FOREIGN KEY ("organization_id") REFERENCES "organizations"("id") ON UPDATE cascade ON DELETE cascade );
|
||||
CREATE TRIGGER trigger_documents_fts_delete AFTER DELETE ON documents BEGIN DELETE FROM documents_fts WHERE id = old.id; END;
|
||||
CREATE TRIGGER trigger_documents_fts_insert AFTER INSERT ON documents BEGIN INSERT INTO documents_fts(id, name, original_name, content) VALUES (new.id, new.name, new.original_name, new.content); END;
|
||||
CREATE TRIGGER trigger_documents_fts_update AFTER UPDATE ON documents BEGIN UPDATE documents_fts SET name = new.name, original_name = new.original_name, content = new.content WHERE id = new.id; END;"
|
||||
CREATE TABLE "webhooks" ( "id" text PRIMARY KEY NOT NULL, "created_at" integer NOT NULL, "updated_at" integer NOT NULL, "name" text NOT NULL, "url" text NOT NULL, "secret" text, "enabled" integer DEFAULT true NOT NULL, "created_by" text, "organization_id" text, FOREIGN KEY ("created_by") REFERENCES "users"("id") ON UPDATE cascade ON DELETE set null, FOREIGN KEY ("organization_id") REFERENCES "organizations"("id") ON UPDATE cascade ON DELETE cascade );"
|
||||
`);
|
||||
});
|
||||
|
||||
|
||||
@@ -9,11 +9,11 @@ import { organizationsInvitationsImprovementMigration } from './list/0006-organi
|
||||
import { documentActivityLogMigration } from './list/0007-document-activity-log.migration';
|
||||
import { documentActivityLogOnDeleteSetNullMigration } from './list/0008-document-activity-log-on-delete-set-null.migration';
|
||||
import { dropLegacyMigrationsMigration } from './list/0009-drop-legacy-migrations.migration';
|
||||
|
||||
import { documentFileEncryptionMigration } from './list/0010-document-file-encryption.migration';
|
||||
|
||||
import { softDeleteOrganizationsMigration } from './list/0011-soft-delete-organizations.migration';
|
||||
import { taggingRuleConditionMatchModeMigration } from './list/0012-tagging-rule-condition-match-mode.migration';
|
||||
import { dropFts5TriggersMigration } from './list/0013-drop-fts-5-triggers.migration';
|
||||
import { twoFactorAuthenticationMigration } from "./list/0014-two-factor-authentication.migration";
|
||||
|
||||
export const migrations: Migration[] = [
|
||||
initialSchemaSetupMigration,
|
||||
@@ -28,4 +28,6 @@ export const migrations: Migration[] = [
|
||||
documentFileEncryptionMigration,
|
||||
softDeleteOrganizationsMigration,
|
||||
taggingRuleConditionMatchModeMigration,
|
||||
];
|
||||
dropFts5TriggersMigration,
|
||||
twoFactorAuthenticationMigration
|
||||
];
|
||||
10
apps/papra-server/src/modules/admin/admin.routes.ts
Normal file
10
apps/papra-server/src/modules/admin/admin.routes.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import type { RouteDefinitionContext } from '../app/server.types';
|
||||
import { registerAnalyticsRoutes } from './analytics/analytics.routes';
|
||||
import { registerOrganizationManagementRoutes } from './organizations/organizations.routes';
|
||||
import { registerUserManagementRoutes } from './users/users.routes';
|
||||
|
||||
export function registerAdminRoutes(context: RouteDefinitionContext) {
|
||||
registerAnalyticsRoutes(context);
|
||||
registerUserManagementRoutes(context);
|
||||
registerOrganizationManagementRoutes(context);
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
import type { RouteDefinitionContext } from '../../app/server.types';
|
||||
import { createRoleMiddleware, requireAuthentication } from '../../app/auth/auth.middleware';
|
||||
import { createDocumentsRepository } from '../../documents/documents.repository';
|
||||
import { createOrganizationsRepository } from '../../organizations/organizations.repository';
|
||||
import { PERMISSIONS } from '../../roles/roles.constants';
|
||||
import { createUsersRepository } from '../../users/users.repository';
|
||||
|
||||
export function registerAnalyticsRoutes(context: RouteDefinitionContext) {
|
||||
registerGetUserCountAdminRoute(context);
|
||||
registerGetDocumentStatsAdminRoute(context);
|
||||
registerGetOrganizationCountAdminRoute(context);
|
||||
}
|
||||
|
||||
function registerGetUserCountAdminRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/users/count',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_ANALYTICS],
|
||||
}),
|
||||
async (context) => {
|
||||
const usersRepository = createUsersRepository({ db });
|
||||
|
||||
const { userCount } = await usersRepository.getUserCount();
|
||||
|
||||
return context.json({ userCount });
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
function registerGetDocumentStatsAdminRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/documents/stats',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_ANALYTICS],
|
||||
}),
|
||||
async (context) => {
|
||||
const documentsRepository = createDocumentsRepository({ db });
|
||||
|
||||
const stats = await documentsRepository.getGlobalDocumentsStats();
|
||||
|
||||
return context.json(stats);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
function registerGetOrganizationCountAdminRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/organizations/count',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_ANALYTICS],
|
||||
}),
|
||||
async (context) => {
|
||||
const organizationsRepository = createOrganizationsRepository({ db });
|
||||
|
||||
const { organizationCount } = await organizationsRepository.getOrganizationCount();
|
||||
|
||||
return context.json({ organizationCount });
|
||||
},
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { createInMemoryDatabase } from '../../../app/database/database.test-utils';
|
||||
import { createServer } from '../../../app/server';
|
||||
import { createTestServerDependencies } from '../../../app/server.test-utils';
|
||||
import { overrideConfig } from '../../../config/config.test-utils';
|
||||
|
||||
describe('analytics routes - permission protection', () => {
|
||||
describe('get /api/admin/users/count', () => {
|
||||
test('when the user has the VIEW_ANALYTICS permission, the request succeeds', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com' },
|
||||
{ id: 'usr_regular', email: 'user@example.com' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users/count',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json();
|
||||
expect(body).to.eql({ userCount: 2 });
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_ANALYTICS permission, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [{ id: 'usr_regular', email: 'user@example.com' }],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users/count',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase();
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users/count',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,597 @@
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { createInMemoryDatabase } from '../../../app/database/database.test-utils';
|
||||
import { createServer } from '../../../app/server';
|
||||
import { createTestServerDependencies } from '../../../app/server.test-utils';
|
||||
import { overrideConfig } from '../../../config/config.test-utils';
|
||||
|
||||
describe('admin organizations routes - permission protection', () => {
|
||||
describe('get /api/admin/organizations', () => {
|
||||
test('when the user has the VIEW_USERS permission, the request succeeds', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Organization 1' },
|
||||
{ id: 'org_abcdefghijklmnopqrstuvwx', name: 'Organization 2' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = (await response.json()) as { organizations: unknown; totalCount: number };
|
||||
expect(body.organizations).to.have.length(2);
|
||||
expect(body.totalCount).to.eql(2);
|
||||
});
|
||||
|
||||
test('when using search parameter, it filters by name', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_alpha123456789012345678', name: 'Alpha Corporation' },
|
||||
{ id: 'org_beta1234567890123456789', name: 'Beta LLC' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations?search=Alpha',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { organizations: { name: string }[]; totalCount: number };
|
||||
expect(body.organizations).to.have.length(1);
|
||||
expect(body.organizations[0]?.name).to.eql('Alpha Corporation');
|
||||
});
|
||||
|
||||
test('when using search parameter with organization ID, it returns exact match', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Alpha Corporation' },
|
||||
{ id: 'org_abcdefghijklmnopqrstuvwx', name: 'Beta LLC' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations?search=org_abcdefghijklmnopqrstuvwx',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { organizations: { id: string }[]; totalCount: number };
|
||||
expect(body.organizations).to.have.length(1);
|
||||
expect(body.organizations[0]?.id).to.eql('org_abcdefghijklmnopqrstuvwx');
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_USERS permission, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [{ id: 'usr_regular', email: 'user@example.com' }],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase();
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('get /api/admin/organizations/:organizationId', () => {
|
||||
test('when the user has the VIEW_USERS permission, the request succeeds and returns organization basic info', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { organization: { id: string; name: string } };
|
||||
expect(body.organization.id).to.eql('org_123456789012345678901234');
|
||||
expect(body.organization.name).to.eql('Test Organization');
|
||||
});
|
||||
|
||||
test('when the organization does not exist, a 404 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_999999999999999999999999',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(404);
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_USERS permission, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_regular', email: 'user@example.com' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('get /api/admin/organizations/:organizationId/members', () => {
|
||||
test('when the user has the VIEW_USERS permission, the request succeeds and returns members', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
{ id: 'usr_member', email: 'member@example.com', name: 'Member User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
organizationMembers: [
|
||||
{ userId: 'usr_member', organizationId: 'org_123456789012345678901234', role: 'member' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/members',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { members: { userId: string; role: string }[] };
|
||||
expect(body.members).to.have.length(1);
|
||||
expect(body.members[0]?.userId).to.eql('usr_member');
|
||||
expect(body.members[0]?.role).to.eql('member');
|
||||
});
|
||||
|
||||
test('when the organization does not exist, a 404 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_999999999999999999999999/members',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(404);
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_USERS permission, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_regular', email: 'user@example.com' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/members',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/members',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
});
|
||||
});
|
||||
|
||||
describe('get /api/admin/organizations/:organizationId/intake-emails', () => {
|
||||
test('when the user has the VIEW_USERS permission, the request succeeds and returns intake emails', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
intakeEmails: [
|
||||
{ organizationId: 'org_123456789012345678901234', emailAddress: 'intake@example.com', isEnabled: true },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/intake-emails',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { intakeEmails: { emailAddress: string; isEnabled: boolean }[] };
|
||||
expect(body.intakeEmails).to.have.length(1);
|
||||
expect(body.intakeEmails[0]?.emailAddress).to.eql('intake@example.com');
|
||||
});
|
||||
|
||||
test('when the organization does not exist, a 404 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_999999999999999999999999/intake-emails',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(404);
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_USERS permission, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_regular', email: 'user@example.com' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/intake-emails',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/intake-emails',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
});
|
||||
});
|
||||
|
||||
describe('get /api/admin/organizations/:organizationId/webhooks', () => {
|
||||
test('when the user has the VIEW_USERS permission, the request succeeds and returns webhooks', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
webhooks: [
|
||||
{ organizationId: 'org_123456789012345678901234', name: 'Test Webhook', url: 'https://example.com/webhook', enabled: true },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/webhooks',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { webhooks: { name: string; url: string; enabled: boolean }[] };
|
||||
expect(body.webhooks).to.have.length(1);
|
||||
expect(body.webhooks[0]?.name).to.eql('Test Webhook');
|
||||
});
|
||||
|
||||
test('when the organization does not exist, a 404 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_999999999999999999999999/webhooks',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(404);
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_USERS permission, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_regular', email: 'user@example.com' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/webhooks',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/webhooks',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
});
|
||||
});
|
||||
|
||||
describe('get /api/admin/organizations/:organizationId/stats', () => {
|
||||
test('when the user has the VIEW_USERS permission, the request succeeds and returns stats', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/stats',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { stats: { documentsCount: number; documentsSize: number } };
|
||||
expect(body.stats).to.have.property('documentsCount');
|
||||
expect(body.stats).to.have.property('documentsSize');
|
||||
});
|
||||
|
||||
test('when the organization does not exist, a 404 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_999999999999999999999999/stats',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(404);
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_USERS permission, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_regular', email: 'user@example.com' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/stats',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
organizations: [
|
||||
{ id: 'org_123456789012345678901234', name: 'Test Organization' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/organizations/org_123456789012345678901234/stats',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,208 @@
|
||||
import type { RouteDefinitionContext } from '../../app/server.types';
|
||||
import { z } from 'zod';
|
||||
import { createRoleMiddleware, requireAuthentication } from '../../app/auth/auth.middleware';
|
||||
import { createIntakeEmailsRepository } from '../../intake-emails/intake-emails.repository';
|
||||
import { organizationIdSchema } from '../../organizations/organization.schemas';
|
||||
import { createOrganizationNotFoundError } from '../../organizations/organizations.errors';
|
||||
import { createOrganizationsRepository } from '../../organizations/organizations.repository';
|
||||
import { PERMISSIONS } from '../../roles/roles.constants';
|
||||
import { validateParams, validateQuery } from '../../shared/validation/validation';
|
||||
import { createWebhookRepository } from '../../webhooks/webhook.repository';
|
||||
|
||||
export function registerOrganizationManagementRoutes(context: RouteDefinitionContext) {
|
||||
registerListOrganizationsRoute(context);
|
||||
registerGetOrganizationBasicInfoRoute(context);
|
||||
registerGetOrganizationMembersRoute(context);
|
||||
registerGetOrganizationIntakeEmailsRoute(context);
|
||||
registerGetOrganizationWebhooksRoute(context);
|
||||
registerGetOrganizationStatsRoute(context);
|
||||
}
|
||||
|
||||
function registerListOrganizationsRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/organizations',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_USERS],
|
||||
}),
|
||||
validateQuery(
|
||||
z.object({
|
||||
search: z.string().optional(),
|
||||
pageIndex: z.coerce.number().min(0).int().optional().default(0),
|
||||
pageSize: z.coerce.number().min(1).max(100).int().optional().default(25),
|
||||
}),
|
||||
),
|
||||
async (context) => {
|
||||
const organizationsRepository = createOrganizationsRepository({ db });
|
||||
|
||||
const { search, pageIndex, pageSize } = context.req.valid('query');
|
||||
|
||||
const { organizations, totalCount } = await organizationsRepository.listOrganizations({
|
||||
search,
|
||||
pageIndex,
|
||||
pageSize,
|
||||
});
|
||||
|
||||
return context.json({
|
||||
organizations,
|
||||
totalCount,
|
||||
pageIndex,
|
||||
pageSize,
|
||||
});
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
function registerGetOrganizationBasicInfoRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/organizations/:organizationId',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_USERS],
|
||||
}),
|
||||
validateParams(z.object({
|
||||
organizationId: organizationIdSchema,
|
||||
})),
|
||||
async (context) => {
|
||||
const organizationsRepository = createOrganizationsRepository({ db });
|
||||
|
||||
const { organizationId } = context.req.valid('param');
|
||||
|
||||
const { organization } = await organizationsRepository.getOrganizationById({ organizationId });
|
||||
|
||||
if (!organization) {
|
||||
throw createOrganizationNotFoundError();
|
||||
}
|
||||
|
||||
return context.json({ organization });
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
function registerGetOrganizationMembersRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/organizations/:organizationId/members',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_USERS],
|
||||
}),
|
||||
validateParams(z.object({
|
||||
organizationId: organizationIdSchema,
|
||||
})),
|
||||
async (context) => {
|
||||
const organizationsRepository = createOrganizationsRepository({ db });
|
||||
|
||||
const { organizationId } = context.req.valid('param');
|
||||
|
||||
const { organization } = await organizationsRepository.getOrganizationById({ organizationId });
|
||||
|
||||
if (!organization) {
|
||||
throw createOrganizationNotFoundError();
|
||||
}
|
||||
|
||||
const { members } = await organizationsRepository.getOrganizationMembers({ organizationId });
|
||||
|
||||
return context.json({ members });
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
function registerGetOrganizationIntakeEmailsRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/organizations/:organizationId/intake-emails',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_USERS],
|
||||
}),
|
||||
validateParams(z.object({
|
||||
organizationId: organizationIdSchema,
|
||||
})),
|
||||
async (context) => {
|
||||
const organizationsRepository = createOrganizationsRepository({ db });
|
||||
const intakeEmailsRepository = createIntakeEmailsRepository({ db });
|
||||
|
||||
const { organizationId } = context.req.valid('param');
|
||||
|
||||
const { organization } = await organizationsRepository.getOrganizationById({ organizationId });
|
||||
|
||||
if (!organization) {
|
||||
throw createOrganizationNotFoundError();
|
||||
}
|
||||
|
||||
const { intakeEmails } = await intakeEmailsRepository.getOrganizationIntakeEmails({ organizationId });
|
||||
|
||||
return context.json({ intakeEmails });
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
function registerGetOrganizationWebhooksRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/organizations/:organizationId/webhooks',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_USERS],
|
||||
}),
|
||||
validateParams(z.object({
|
||||
organizationId: organizationIdSchema,
|
||||
})),
|
||||
async (context) => {
|
||||
const organizationsRepository = createOrganizationsRepository({ db });
|
||||
const webhookRepository = createWebhookRepository({ db });
|
||||
|
||||
const { organizationId } = context.req.valid('param');
|
||||
|
||||
const { organization } = await organizationsRepository.getOrganizationById({ organizationId });
|
||||
|
||||
if (!organization) {
|
||||
throw createOrganizationNotFoundError();
|
||||
}
|
||||
|
||||
const { webhooks } = await webhookRepository.getOrganizationWebhooks({ organizationId });
|
||||
|
||||
return context.json({ webhooks });
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
function registerGetOrganizationStatsRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/organizations/:organizationId/stats',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_USERS],
|
||||
}),
|
||||
validateParams(z.object({
|
||||
organizationId: organizationIdSchema,
|
||||
})),
|
||||
async (context) => {
|
||||
const { createDocumentsRepository } = await import('../../documents/documents.repository');
|
||||
const organizationsRepository = createOrganizationsRepository({ db });
|
||||
|
||||
const { organizationId } = context.req.valid('param');
|
||||
|
||||
const { organization } = await organizationsRepository.getOrganizationById({ organizationId });
|
||||
|
||||
if (!organization) {
|
||||
throw createOrganizationNotFoundError();
|
||||
}
|
||||
|
||||
const documentsRepository = createDocumentsRepository({ db });
|
||||
const stats = await documentsRepository.getOrganizationStats({ organizationId });
|
||||
|
||||
return context.json({ stats });
|
||||
},
|
||||
);
|
||||
}
|
||||
236
apps/papra-server/src/modules/admin/users/e2e/users.e2e.test.ts
Normal file
236
apps/papra-server/src/modules/admin/users/e2e/users.e2e.test.ts
Normal file
@@ -0,0 +1,236 @@
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { createInMemoryDatabase } from '../../../app/database/database.test-utils';
|
||||
import { createServer } from '../../../app/server';
|
||||
import { createTestServerDependencies } from '../../../app/server.test-utils';
|
||||
import { overrideConfig } from '../../../config/config.test-utils';
|
||||
|
||||
describe('admin users routes - permission protection', () => {
|
||||
describe('get /api/admin/users', () => {
|
||||
test('when the user has the VIEW_USERS permission, the request succeeds', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
{ id: 'usr_regular', email: 'user@example.com', name: 'Regular User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = (await response.json()) as { users: unknown; totalCount: number };
|
||||
expect(body.users).to.have.length(2);
|
||||
expect(body.totalCount).to.eql(2);
|
||||
});
|
||||
|
||||
test('when using search parameter, it filters by email', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
{ id: 'usr_regular', email: 'user@example.com', name: 'Regular User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users?search=admin',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { users: { email: string }[]; totalCount: number };
|
||||
expect(body.users).to.have.length(1);
|
||||
expect(body.users[0]?.email).to.eql('admin@example.com');
|
||||
});
|
||||
|
||||
test('when using search parameter with user ID, it returns exact match', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
{ id: 'usr_abcdefghijklmnopqrstuvwx', email: 'user@example.com', name: 'Regular User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users?search=usr_abcdefghijklmnopqrstuvwx',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as { users: { id: string }[]; totalCount: number };
|
||||
expect(body.users).to.have.length(1);
|
||||
expect(body.users[0]?.id).to.eql('usr_abcdefghijklmnopqrstuvwx');
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_USERS permission, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [{ id: 'usr_regular', email: 'user@example.com' }],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase();
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('get /api/admin/users/:userId', () => {
|
||||
test('when the user has the VIEW_USERS permission, the request succeeds and returns user details', async () => {
|
||||
const targetUserId = 'usr_123456789012345678901234';
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
{ id: targetUserId, email: 'target@example.com', name: 'Target User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
organizations: [
|
||||
{ id: 'org_1', name: 'Organization 1' },
|
||||
],
|
||||
organizationMembers: [
|
||||
{ userId: targetUserId, organizationId: 'org_1', role: 'owner' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
`/api/admin/users/${targetUserId}`,
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
const body = await response.json() as {
|
||||
user: { id: string; email: string };
|
||||
organizations: { id: string; name: string }[];
|
||||
roles: string[];
|
||||
};
|
||||
expect(body.user.id).to.eql(targetUserId);
|
||||
expect(body.user.email).to.eql('target@example.com');
|
||||
expect(body.organizations).to.have.length(1);
|
||||
expect(body.organizations[0]?.id).to.eql('org_1');
|
||||
expect(body.roles).to.be.an('array');
|
||||
});
|
||||
|
||||
test('when the user does not exist, a 404 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_admin', email: 'admin@example.com', name: 'Admin User' },
|
||||
],
|
||||
userRoles: [
|
||||
{ userId: 'usr_admin', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users/usr_999999999999999999999999',
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_admin' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(404);
|
||||
});
|
||||
|
||||
test('when the user does not have the VIEW_USERS permission, a 401 error is returned', async () => {
|
||||
const targetUserId = 'usr_123456789012345678901234';
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_regular', email: 'user@example.com' },
|
||||
{ id: targetUserId, email: 'target@example.com' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
`/api/admin/users/${targetUserId}`,
|
||||
{ method: 'GET' },
|
||||
{ loggedInUserId: 'usr_regular' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('when the user is not authenticated, a 401 error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [
|
||||
{ id: 'usr_target', email: 'target@example.com' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createServer(createTestServerDependencies({ db, config: overrideConfig({ env: 'test' }) }));
|
||||
|
||||
const response = await app.request(
|
||||
'/api/admin/users/usr_target',
|
||||
{ method: 'GET' },
|
||||
);
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
83
apps/papra-server/src/modules/admin/users/users.routes.ts
Normal file
83
apps/papra-server/src/modules/admin/users/users.routes.ts
Normal file
@@ -0,0 +1,83 @@
|
||||
import type { RouteDefinitionContext } from '../../app/server.types';
|
||||
import { z } from 'zod';
|
||||
import { createRoleMiddleware, requireAuthentication } from '../../app/auth/auth.middleware';
|
||||
import { createOrganizationsRepository } from '../../organizations/organizations.repository';
|
||||
import { PERMISSIONS } from '../../roles/roles.constants';
|
||||
import { createRolesRepository } from '../../roles/roles.repository';
|
||||
import { validateParams, validateQuery } from '../../shared/validation/validation';
|
||||
import { createUsersRepository } from '../../users/users.repository';
|
||||
import { userIdSchema } from '../../users/users.schemas';
|
||||
|
||||
export function registerUserManagementRoutes(context: RouteDefinitionContext) {
|
||||
registerListUsersRoute(context);
|
||||
registerGetUserDetailRoute(context);
|
||||
}
|
||||
|
||||
function registerListUsersRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/users',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_USERS],
|
||||
}),
|
||||
validateQuery(
|
||||
z.object({
|
||||
search: z.string().optional(),
|
||||
pageIndex: z.coerce.number().min(0).int().optional().default(0),
|
||||
pageSize: z.coerce.number().min(1).max(100).int().optional().default(25),
|
||||
}),
|
||||
),
|
||||
async (context) => {
|
||||
const usersRepository = createUsersRepository({ db });
|
||||
|
||||
const { search, pageIndex, pageSize } = context.req.valid('query');
|
||||
|
||||
const { users, totalCount } = await usersRepository.listUsers({
|
||||
search,
|
||||
pageIndex,
|
||||
pageSize,
|
||||
});
|
||||
|
||||
return context.json({
|
||||
users,
|
||||
totalCount,
|
||||
pageIndex,
|
||||
pageSize,
|
||||
});
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
function registerGetUserDetailRoute({ app, db }: RouteDefinitionContext) {
|
||||
const { requirePermissions } = createRoleMiddleware({ db });
|
||||
|
||||
app.get(
|
||||
'/api/admin/users/:userId',
|
||||
requireAuthentication(),
|
||||
requirePermissions({
|
||||
requiredPermissions: [PERMISSIONS.VIEW_USERS],
|
||||
}),
|
||||
validateParams(z.object({
|
||||
userId: userIdSchema,
|
||||
})),
|
||||
async (context) => {
|
||||
const usersRepository = createUsersRepository({ db });
|
||||
const organizationsRepository = createOrganizationsRepository({ db });
|
||||
const rolesRepository = createRolesRepository({ db });
|
||||
|
||||
const { userId } = context.req.valid('param');
|
||||
|
||||
const { user } = await usersRepository.getUserByIdOrThrow({ userId });
|
||||
const { organizations } = await organizationsRepository.getUserOrganizations({ userId });
|
||||
const { roles } = await rolesRepository.getUserRoles({ userId });
|
||||
|
||||
return context.json({
|
||||
user,
|
||||
organizations,
|
||||
roles,
|
||||
});
|
||||
},
|
||||
);
|
||||
}
|
||||
@@ -2,6 +2,7 @@ import type { Document } from '../../documents/documents.types';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { createInMemoryDatabase } from '../../app/database/database.test-utils';
|
||||
import { createServer } from '../../app/server';
|
||||
import { createTestServerDependencies } from '../../app/server.test-utils';
|
||||
import { overrideConfig } from '../../config/config.test-utils';
|
||||
import { ORGANIZATION_ROLES } from '../../organizations/organizations.constants';
|
||||
|
||||
@@ -13,7 +14,7 @@ describe('api-key e2e', () => {
|
||||
organizationMembers: [{ organizationId: 'org_222222222222222222222222', userId: 'usr_111111111111111111111111', role: ORGANIZATION_ROLES.OWNER }],
|
||||
});
|
||||
|
||||
const { app } = await createServer({
|
||||
const { app } = createServer(createTestServerDependencies({
|
||||
db,
|
||||
config: overrideConfig({
|
||||
env: 'test',
|
||||
@@ -21,7 +22,7 @@ describe('api-key e2e', () => {
|
||||
driver: 'in-memory',
|
||||
},
|
||||
}),
|
||||
});
|
||||
}));
|
||||
|
||||
const createApiKeyResponse = await app.request(
|
||||
'/api/api-keys',
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { ensureAuthSecretIsNotDefaultInProduction } from './auth.config.models';
|
||||
import { createAuthSecretIsDefaultError } from './auth.errors';
|
||||
|
||||
describe('auth config models', () => {
|
||||
describe('ensureAuthSecretIsNotDefaultInProduction', () => {
|
||||
const defaultAuthSecret = 'papra-default-auth-secret-change-me';
|
||||
|
||||
test('throws an error if in production and auth secret is the default one', () => {
|
||||
expect(() =>
|
||||
ensureAuthSecretIsNotDefaultInProduction({
|
||||
config: { auth: { secret: defaultAuthSecret }, env: 'production' },
|
||||
defaultAuthSecret,
|
||||
}),
|
||||
).toThrow(createAuthSecretIsDefaultError());
|
||||
|
||||
expect(() =>
|
||||
ensureAuthSecretIsNotDefaultInProduction({
|
||||
config: { auth: { secret: defaultAuthSecret }, env: 'dev' },
|
||||
defaultAuthSecret,
|
||||
}),
|
||||
).not.toThrow();
|
||||
|
||||
expect(() =>
|
||||
ensureAuthSecretIsNotDefaultInProduction({
|
||||
config: { auth: { secret: 'a-non-default-secure-secret' }, env: 'production' },
|
||||
defaultAuthSecret,
|
||||
}),
|
||||
).not.toThrow();
|
||||
});
|
||||
});
|
||||
});
|
||||
14
apps/papra-server/src/modules/app/auth/auth.config.models.ts
Normal file
14
apps/papra-server/src/modules/app/auth/auth.config.models.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { DEFAULT_AUTH_SECRET } from './auth.constants';
|
||||
import { createAuthSecretIsDefaultError } from './auth.errors';
|
||||
|
||||
export function ensureAuthSecretIsNotDefaultInProduction({
|
||||
config,
|
||||
defaultAuthSecret = DEFAULT_AUTH_SECRET,
|
||||
}: {
|
||||
config: { auth: { secret: string }; env: string };
|
||||
defaultAuthSecret?: string;
|
||||
}) {
|
||||
if (config.env === 'production' && config.auth.secret === defaultAuthSecret) {
|
||||
throw createAuthSecretIsDefaultError();
|
||||
}
|
||||
}
|
||||
@@ -2,6 +2,7 @@ import type { ConfigDefinition } from 'figue';
|
||||
import { z } from 'zod';
|
||||
import { booleanishSchema } from '../../config/config.schemas';
|
||||
import { parseJson } from '../../intake-emails/intake-emails.schemas';
|
||||
import { DEFAULT_AUTH_SECRET } from './auth.constants';
|
||||
|
||||
const customOAuthProviderSchema = z.object({
|
||||
providerId: z.string(),
|
||||
@@ -26,9 +27,9 @@ const customOAuthProviderSchema = z.object({
|
||||
|
||||
export const authConfig = {
|
||||
secret: {
|
||||
doc: 'The secret for the auth',
|
||||
schema: z.string(),
|
||||
default: 'change-me-for-god-sake',
|
||||
doc: 'The secret for the auth, it should be at least 32 characters long, you can generate a secure one using `openssl rand -hex 48`',
|
||||
schema: z.string({ required_error: 'Please provide an auth secret using the AUTH_SECRET environment variable, you can use `openssl rand -hex 48` to generate a secure one' }).min(32),
|
||||
default: DEFAULT_AUTH_SECRET,
|
||||
env: 'AUTH_SECRET',
|
||||
},
|
||||
isRegistrationEnabled: {
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { DEFAULT_AUTH_SECRET } from './auth.constants';
|
||||
|
||||
describe('auth constants', () => {
|
||||
describe('default auth secret', () => {
|
||||
test('the default auth secret should be at least 32 characters long', () => {
|
||||
expect(DEFAULT_AUTH_SECRET.length).toBeGreaterThanOrEqual(32);
|
||||
});
|
||||
});
|
||||
});
|
||||
1
apps/papra-server/src/modules/app/auth/auth.constants.ts
Normal file
1
apps/papra-server/src/modules/app/auth/auth.constants.ts
Normal file
@@ -0,0 +1 @@
|
||||
export const DEFAULT_AUTH_SECRET = 'papra-default-auth-secret-change-me';
|
||||
@@ -17,3 +17,10 @@ export const createForbiddenEmailDomainError = createErrorFactory({
|
||||
code: 'auth.forbidden_email_domain',
|
||||
statusCode: 403,
|
||||
});
|
||||
|
||||
export const createAuthSecretIsDefaultError = createErrorFactory({
|
||||
code: 'auth.config.secret_is_default',
|
||||
message: 'In production, the auth secret must not be the default one. Please set a secure auth secret using the AUTH_SECRET environment variable.',
|
||||
statusCode: 500,
|
||||
isInternal: true,
|
||||
});
|
||||
|
||||
199
apps/papra-server/src/modules/app/auth/auth.middleware.test.ts
Normal file
199
apps/papra-server/src/modules/app/auth/auth.middleware.test.ts
Normal file
@@ -0,0 +1,199 @@
|
||||
import type { ServerInstanceGenerics } from '../server.types';
|
||||
import { Hono } from 'hono';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { PERMISSIONS } from '../../roles/roles.constants';
|
||||
import { createInMemoryDatabase } from '../database/database.test-utils';
|
||||
import { registerErrorMiddleware } from '../middlewares/errors.middleware';
|
||||
import { createRoleMiddleware } from './auth.middleware';
|
||||
|
||||
describe('createRoleMiddleware', () => {
|
||||
const permissionsByRole = {
|
||||
admin: [PERMISSIONS.BO_ACCESS],
|
||||
};
|
||||
|
||||
const createTestServer = ({ loggedInUserId}: { loggedInUserId: string | null }) => {
|
||||
const app = new Hono<ServerInstanceGenerics>();
|
||||
registerErrorMiddleware({ app });
|
||||
|
||||
// Mock the context variables before the middleware
|
||||
app.use('*', async (c, next) => {
|
||||
c.set('userId', loggedInUserId);
|
||||
await next();
|
||||
});
|
||||
|
||||
return { app };
|
||||
};
|
||||
|
||||
describe('when the user has the required permission', () => {
|
||||
test('the request is allowed to proceed', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [{ id: 'user-1', email: 'user@example.com' }],
|
||||
userRoles: [
|
||||
{ userId: 'user-1', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createTestServer({ loggedInUserId: 'user-1' });
|
||||
|
||||
const { requirePermissions } = createRoleMiddleware({ db, permissionsByRole });
|
||||
|
||||
app.get(
|
||||
'/protected',
|
||||
requirePermissions({ requiredPermissions: [PERMISSIONS.BO_ACCESS] }),
|
||||
async c => c.json({ success: true }),
|
||||
);
|
||||
|
||||
const response = await app.request('/protected', { method: 'GET' });
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
expect(await response.json()).to.eql({ success: true });
|
||||
});
|
||||
});
|
||||
|
||||
describe('when the user does not have the required permission', () => {
|
||||
test('a 401 unauthorized error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [{ id: 'user-1', email: 'user@example.com' }],
|
||||
});
|
||||
|
||||
const { app } = createTestServer({ loggedInUserId: 'user-1' });
|
||||
|
||||
const { requirePermissions } = createRoleMiddleware({ db, permissionsByRole });
|
||||
|
||||
app.get(
|
||||
'/protected',
|
||||
requirePermissions({ requiredPermissions: [PERMISSIONS.BO_ACCESS] }),
|
||||
async c => c.json({ success: true }),
|
||||
);
|
||||
|
||||
const response = await app.request('/protected', { method: 'GET' });
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('when the user is not authenticated', () => {
|
||||
test('a 401 unauthorized error is returned', async () => {
|
||||
const { db } = await createInMemoryDatabase();
|
||||
|
||||
const { app } = createTestServer({ loggedInUserId: null });
|
||||
|
||||
const { requirePermissions } = createRoleMiddleware({ db, permissionsByRole });
|
||||
|
||||
app.get(
|
||||
'/protected',
|
||||
requirePermissions({ requiredPermissions: [PERMISSIONS.BO_ACCESS] }),
|
||||
async c => c.json({ success: true }),
|
||||
);
|
||||
|
||||
const response = await app.request('/protected', { method: 'GET' });
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('when the user has multiple permissions and one matches', () => {
|
||||
test('the request is allowed to proceed', async () => {
|
||||
const extendedPermissionsByRole = {
|
||||
admin: [PERMISSIONS.BO_ACCESS, PERMISSIONS.VIEW_USERS],
|
||||
};
|
||||
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [{ id: 'user-1', email: 'user@example.com' }],
|
||||
userRoles: [
|
||||
{ userId: 'user-1', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createTestServer({ loggedInUserId: 'user-1' });
|
||||
|
||||
const { requirePermissions } = createRoleMiddleware({ db, permissionsByRole: extendedPermissionsByRole });
|
||||
|
||||
app.get(
|
||||
'/protected',
|
||||
requirePermissions({ requiredPermissions: [PERMISSIONS.VIEW_USERS] }),
|
||||
async c => c.json({ success: true }),
|
||||
);
|
||||
|
||||
const response = await app.request('/protected', { method: 'GET' });
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
expect(await response.json()).to.eql({ success: true });
|
||||
});
|
||||
});
|
||||
|
||||
describe('when multiple permissions are required', () => {
|
||||
test('the request is allowed if the user has all required permissions', async () => {
|
||||
const extendedPermissionsByRole = {
|
||||
admin: [PERMISSIONS.BO_ACCESS, PERMISSIONS.VIEW_USERS],
|
||||
};
|
||||
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [{ id: 'user-1', email: 'user@example.com' }],
|
||||
userRoles: [
|
||||
{ userId: 'user-1', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createTestServer({ loggedInUserId: 'user-1' });
|
||||
|
||||
const { requirePermissions } = createRoleMiddleware({ db, permissionsByRole: extendedPermissionsByRole });
|
||||
|
||||
app.get(
|
||||
'/protected',
|
||||
requirePermissions({ requiredPermissions: [PERMISSIONS.BO_ACCESS, PERMISSIONS.VIEW_USERS] }),
|
||||
async c => c.json({ success: true }),
|
||||
);
|
||||
|
||||
const response = await app.request('/protected', { method: 'GET' });
|
||||
|
||||
expect(response.status).to.eql(200);
|
||||
expect(await response.json()).to.eql({ success: true });
|
||||
});
|
||||
|
||||
test('a 401 error is returned if the user is missing one of the required permissions', async () => {
|
||||
const extendedPermissionsByRole = {
|
||||
admin: [PERMISSIONS.BO_ACCESS],
|
||||
};
|
||||
|
||||
const { db } = await createInMemoryDatabase({
|
||||
users: [{ id: 'user-1', email: 'user@example.com' }],
|
||||
userRoles: [
|
||||
{ userId: 'user-1', role: 'admin' },
|
||||
],
|
||||
});
|
||||
|
||||
const { app } = createTestServer({ loggedInUserId: 'user-1' });
|
||||
|
||||
const { requirePermissions } = createRoleMiddleware({ db, permissionsByRole: extendedPermissionsByRole });
|
||||
|
||||
app.get(
|
||||
'/protected',
|
||||
requirePermissions({ requiredPermissions: [PERMISSIONS.BO_ACCESS, PERMISSIONS.VIEW_USERS] }),
|
||||
async c => c.json({ success: true }),
|
||||
);
|
||||
|
||||
const response = await app.request('/protected', { method: 'GET' });
|
||||
|
||||
expect(response.status).to.eql(401);
|
||||
expect(await response.json()).to.eql({
|
||||
error: {
|
||||
code: 'auth.unauthorized',
|
||||
message: 'Unauthorized',
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,6 +1,12 @@
|
||||
import type { ApiKeyPermissions } from '../../api-keys/api-keys.types';
|
||||
import type { Permission, Role } from '../../roles/roles.types';
|
||||
import type { Database } from '../database/database.types';
|
||||
import type { Context } from '../server.types';
|
||||
import { createMiddleware } from 'hono/factory';
|
||||
import { PERMISSIONS_BY_ROLE } from '../../roles/roles.constants';
|
||||
import { getPermissionsForRoles } from '../../roles/roles.methods';
|
||||
import { createRolesRepository } from '../../roles/roles.repository';
|
||||
import { isNil } from '../../shared/utils';
|
||||
import { createUnauthorizedError } from './auth.errors';
|
||||
import { isAuthenticationValid } from './auth.models';
|
||||
|
||||
@@ -20,3 +26,33 @@ export function requireAuthentication({ apiKeyPermissions }: { apiKeyPermissions
|
||||
await next();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Middleware to require specific permissions for the authenticated user.
|
||||
*/
|
||||
export function createRoleMiddleware({ db, permissionsByRole = PERMISSIONS_BY_ROLE }: { db: Database; permissionsByRole?: Record<Role, Readonly<Permission[]>> }) {
|
||||
const rolesRepository = createRolesRepository({ db });
|
||||
|
||||
return {
|
||||
requirePermissions: ({ requiredPermissions }: { requiredPermissions: Permission[] }) =>
|
||||
createMiddleware(async (context: Context, next) => {
|
||||
const userId = context.get('userId');
|
||||
|
||||
if (isNil(userId)) {
|
||||
throw createUnauthorizedError();
|
||||
}
|
||||
|
||||
const { roles } = await rolesRepository.getUserRoles({ userId });
|
||||
|
||||
const { permissions } = getPermissionsForRoles({ roles, permissionsByRole });
|
||||
|
||||
const hasAllPermissions = requiredPermissions.every(permission => permissions.includes(permission));
|
||||
|
||||
if (!hasAllPermissions) {
|
||||
throw createUnauthorizedError();
|
||||
}
|
||||
|
||||
await next();
|
||||
}),
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
import type { Config } from '../../config/config.types';
|
||||
import type { TrackingServices } from '../../tracking/tracking.services';
|
||||
import type { Database } from '../database/database.types';
|
||||
import type { EventServices } from '../events/events.services';
|
||||
import type { AuthEmailsServices } from './auth.emails.services';
|
||||
import { expo } from '@better-auth/expo';
|
||||
import { betterAuth } from 'better-auth';
|
||||
import { drizzleAdapter } from 'better-auth/adapters/drizzle';
|
||||
import { genericOAuth } from 'better-auth/plugins';
|
||||
import { genericOAuth, twoFactor } from 'better-auth/plugins';
|
||||
import { getServerBaseUrl } from '../../config/config.models';
|
||||
import { createLogger } from '../../shared/logger/logger';
|
||||
import { usersTable } from '../../users/users.table';
|
||||
import { createForbiddenEmailDomainError } from './auth.errors';
|
||||
import { getTrustedOrigins, isEmailDomainAllowed } from './auth.models';
|
||||
import { accountsTable, sessionsTable, verificationsTable } from './auth.tables';
|
||||
import { accountsTable, sessionsTable, twoFactorTable, verificationsTable } from './auth.tables';
|
||||
|
||||
export type Auth = ReturnType<typeof getAuth>['auth'];
|
||||
|
||||
@@ -21,12 +21,12 @@ export function getAuth({
|
||||
db,
|
||||
config,
|
||||
authEmailsServices,
|
||||
trackingServices,
|
||||
eventServices,
|
||||
}: {
|
||||
db: Database;
|
||||
config: Config;
|
||||
authEmailsServices: AuthEmailsServices;
|
||||
trackingServices: TrackingServices;
|
||||
eventServices: EventServices;
|
||||
}) {
|
||||
const { secret } = config.auth;
|
||||
|
||||
@@ -74,6 +74,7 @@ export function getAuth({
|
||||
account: accountsTable,
|
||||
session: sessionsTable,
|
||||
verification: verificationsTable,
|
||||
twoFactor: twoFactorTable,
|
||||
},
|
||||
},
|
||||
),
|
||||
@@ -86,9 +87,13 @@ export function getAuth({
|
||||
throw createForbiddenEmailDomainError();
|
||||
}
|
||||
},
|
||||
after: async ({ id: userId, email }) => {
|
||||
after: async ({ id: userId, email, createdAt }) => {
|
||||
logger.info({ userId }, 'User signed up');
|
||||
trackingServices.captureUserEvent({ userId, event: 'User signed up', properties: { $set: { email } } });
|
||||
|
||||
eventServices.emitEvent({
|
||||
eventName: 'user.created',
|
||||
payload: { userId, email, createdAt },
|
||||
});
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -123,26 +128,7 @@ export function getAuth({
|
||||
},
|
||||
plugins: [
|
||||
expo(),
|
||||
// Would love to have this but it messes with the error handling in better-auth client
|
||||
// {
|
||||
// id: 'better-auth-error-adapter',
|
||||
// onResponse: async (res) => {
|
||||
// // Transform better auth error to our own error
|
||||
// if (res.status < 400) {
|
||||
// return { response: res };
|
||||
// }
|
||||
|
||||
// const body = await res.clone().json();
|
||||
// const code = get(body, 'code', 'unknown');
|
||||
|
||||
// throw createError({
|
||||
// message: get(body, 'message', 'Unknown error'),
|
||||
// code: `auth.${code.toLowerCase()}`,
|
||||
// statusCode: res.status as ContentfulStatusCode,
|
||||
// isInternal: res.status >= 500,
|
||||
// });
|
||||
// },
|
||||
// },
|
||||
twoFactor(),
|
||||
|
||||
...(config.auth.providers.customs.length > 0
|
||||
? [genericOAuth({ config: config.auth.providers.customs })]
|
||||
|
||||
@@ -56,3 +56,15 @@ export const verificationsTable = sqliteTable(
|
||||
index('auth_verifications_identifier_index').on(table.identifier),
|
||||
],
|
||||
);
|
||||
|
||||
export const twoFactorTable = sqliteTable(
|
||||
'auth_two_factor',
|
||||
{
|
||||
...createPrimaryKeyField({ prefix: 'auth_2fa' }),
|
||||
...createTimestampColumns(),
|
||||
|
||||
userId: text('user_id').references(() => usersTable.id, { onDelete: 'cascade', onUpdate: 'cascade' }),
|
||||
secret: text('secret'),
|
||||
backupCodes: text('backup_codes'),
|
||||
},
|
||||
);
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
import { describe, expect, test, vi } from 'vitest';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { overrideConfig } from '../../../config/config.test-utils';
|
||||
import { createInMemoryDatabase } from '../../database/database.test-utils';
|
||||
import { createEventServices } from '../../events/events.services';
|
||||
import { createServer } from '../../server';
|
||||
import { createTestServerDependencies } from '../../server.test-utils';
|
||||
import { createAuthEmailsServices } from '../auth.emails.services';
|
||||
import { getAuth } from '../auth.services';
|
||||
|
||||
@@ -34,9 +36,9 @@ describe('email verification e2e', () => {
|
||||
});
|
||||
|
||||
const authEmailsServices = createAuthEmailsServices({ emailsServices: mockEmailsServices });
|
||||
const { auth } = getAuth({ db, config, authEmailsServices, trackingServices: { captureUserEvent: vi.fn(), shutdown: vi.fn() } });
|
||||
const { auth } = getAuth({ db, config, authEmailsServices, eventServices: createEventServices() });
|
||||
|
||||
const { app } = await createServer({ db, config, auth });
|
||||
const { app } = createServer(createTestServerDependencies({ db, config, auth }));
|
||||
|
||||
const response = await app.request('/api/auth/sign-up/email', {
|
||||
method: 'POST',
|
||||
@@ -75,9 +77,9 @@ describe('email verification e2e', () => {
|
||||
});
|
||||
|
||||
const authEmailsServices = createAuthEmailsServices({ emailsServices: mockEmailsServices });
|
||||
const { auth } = getAuth({ db, config, authEmailsServices, trackingServices: { captureUserEvent: vi.fn(), shutdown: vi.fn() } });
|
||||
const { auth } = getAuth({ db, config, authEmailsServices, eventServices: createEventServices() });
|
||||
|
||||
const { app } = await createServer({ db, config, auth });
|
||||
const { app } = createServer(createTestServerDependencies({ db, config, auth }));
|
||||
|
||||
// First, sign up
|
||||
await app.request('/api/auth/sign-up/email', {
|
||||
@@ -135,9 +137,9 @@ describe('email verification e2e', () => {
|
||||
});
|
||||
|
||||
const authEmailsServices = createAuthEmailsServices({ emailsServices: mockEmailsServices });
|
||||
const { auth } = getAuth({ db, config, authEmailsServices, trackingServices: { captureUserEvent: vi.fn(), shutdown: vi.fn() } });
|
||||
const { auth } = getAuth({ db, config, authEmailsServices, eventServices: createEventServices() });
|
||||
|
||||
const { app } = await createServer({ db, config, auth });
|
||||
const { app } = createServer(createTestServerDependencies({ db, config, auth }));
|
||||
|
||||
const response = await app.request('/api/auth/sign-up/email', {
|
||||
method: 'POST',
|
||||
@@ -166,9 +168,9 @@ describe('email verification e2e', () => {
|
||||
});
|
||||
|
||||
const authEmailsServices = createAuthEmailsServices({ emailsServices: mockEmailsServices });
|
||||
const { auth } = getAuth({ db, config, authEmailsServices, trackingServices: { captureUserEvent: vi.fn(), shutdown: vi.fn() } });
|
||||
const { auth } = getAuth({ db, config, authEmailsServices, eventServices: createEventServices() });
|
||||
|
||||
const { app } = await createServer({ db, config, auth });
|
||||
const { app } = createServer(createTestServerDependencies({ db, config, auth }));
|
||||
|
||||
// Sign up
|
||||
await app.request('/api/auth/sign-up/email', {
|
||||
|
||||
@@ -6,6 +6,7 @@ import { apiKeyOrganizationsTable, apiKeysTable } from '../../api-keys/api-keys.
|
||||
import { documentsTable } from '../../documents/documents.table';
|
||||
import { intakeEmailsTable } from '../../intake-emails/intake-emails.tables';
|
||||
import { organizationInvitationsTable, organizationMembersTable, organizationsTable } from '../../organizations/organizations.table';
|
||||
import { userRolesTable } from '../../roles/roles.table';
|
||||
import { organizationSubscriptionsTable } from '../../subscriptions/subscriptions.tables';
|
||||
import { taggingRuleActionsTable, taggingRuleConditionsTable, taggingRulesTable } from '../../tagging-rules/tagging-rules.tables';
|
||||
import { documentsTagsTable, tagsTable } from '../../tags/tags.table';
|
||||
@@ -49,6 +50,7 @@ const seedTables = {
|
||||
webhookEvents: webhookEventsTable,
|
||||
webhookDeliveries: webhookDeliveriesTable,
|
||||
organizationInvitations: organizationInvitationsTable,
|
||||
userRoles: userRolesTable,
|
||||
} as const;
|
||||
|
||||
type SeedTablesRows = {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { ShutdownHandlerRegistration } from '../graceful-shutdown/graceful-shutdown.services';
|
||||
import type { ShutdownServices } from '../graceful-shutdown/graceful-shutdown.services';
|
||||
import { createClient } from '@libsql/client';
|
||||
import { drizzle } from 'drizzle-orm/libsql';
|
||||
|
||||
@@ -8,18 +8,18 @@ function setupDatabase({
|
||||
url,
|
||||
authToken,
|
||||
encryptionKey,
|
||||
registerShutdownHandler,
|
||||
shutdownServices,
|
||||
}: {
|
||||
url: string;
|
||||
authToken?: string;
|
||||
encryptionKey?: string;
|
||||
registerShutdownHandler?: ShutdownHandlerRegistration;
|
||||
shutdownServices?: ShutdownServices;
|
||||
}) {
|
||||
const client = createClient({ url, authToken, encryptionKey });
|
||||
|
||||
const db = drizzle(client);
|
||||
|
||||
registerShutdownHandler?.({
|
||||
shutdownServices?.registerShutdownHandler({
|
||||
id: 'database-client-close',
|
||||
handler: () => client.close(),
|
||||
});
|
||||
|
||||
27
apps/papra-server/src/modules/app/events/events.handlers.ts
Normal file
27
apps/papra-server/src/modules/app/events/events.handlers.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { DocumentSearchServices } from '../../documents/document-search/document-search.types';
|
||||
import type { TrackingServices } from '../../tracking/tracking.services';
|
||||
import type { Database } from '../database/database.types';
|
||||
import type { EventServices } from './events.services';
|
||||
import { registerSyncDocumentSearchEventHandlers } from '../../documents/document-search/events/sync-document-search.handlers';
|
||||
import { registerInsertActivityLogOnDocumentCreatedHandler } from '../../documents/events/activity-log.document-created';
|
||||
import { registerInsertActivityLogOnDocumentRestoredHandler } from '../../documents/events/activity-log.document-restored';
|
||||
import { registerInsertActivityLogOnDocumentTrashedHandler } from '../../documents/events/activity-log.document-trashed';
|
||||
import { registerInsertActivityLogOnDocumentUpdatedHandler } from '../../documents/events/activity-log.document-updated';
|
||||
import { registerTrackDocumentCreatedHandler } from '../../documents/events/tracking.document-created';
|
||||
import { registerTriggerWebhooksOnDocumentCreatedHandler } from '../../documents/events/webhook.document-created';
|
||||
import { registerTriggerWebhooksOnDocumentTrashedHandler } from '../../documents/events/webhook.document-trashed';
|
||||
import { registerTriggerWebhooksOnDocumentUpdatedHandler } from '../../documents/events/webhook.document-updated';
|
||||
import { registerTrackingUserCreatedEventHandler } from '../../users/event-handlers/tracking.user-created';
|
||||
|
||||
export function registerEventHandlers(deps: { trackingServices: TrackingServices; eventServices: EventServices; db: Database; documentSearchServices: DocumentSearchServices }) {
|
||||
registerTrackingUserCreatedEventHandler(deps);
|
||||
registerTriggerWebhooksOnDocumentCreatedHandler(deps);
|
||||
registerInsertActivityLogOnDocumentCreatedHandler(deps);
|
||||
registerTrackDocumentCreatedHandler(deps);
|
||||
registerTriggerWebhooksOnDocumentTrashedHandler(deps);
|
||||
registerInsertActivityLogOnDocumentTrashedHandler(deps);
|
||||
registerInsertActivityLogOnDocumentRestoredHandler(deps);
|
||||
registerTriggerWebhooksOnDocumentUpdatedHandler(deps);
|
||||
registerInsertActivityLogOnDocumentUpdatedHandler(deps);
|
||||
registerSyncDocumentSearchEventHandlers(deps);
|
||||
}
|
||||
193
apps/papra-server/src/modules/app/events/events.services.test.ts
Normal file
193
apps/papra-server/src/modules/app/events/events.services.test.ts
Normal file
@@ -0,0 +1,193 @@
|
||||
import { createNoopLogger } from '@crowlog/logger';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { nextTick } from '../../shared/async/defer.test-utils';
|
||||
import { createEventServices } from './events.services';
|
||||
|
||||
type TestEvents = {
|
||||
'user.created': { userId: string; email: string };
|
||||
'user.deleted': { userId: string };
|
||||
};
|
||||
|
||||
describe('events services', () => {
|
||||
describe('emitEvent', () => {
|
||||
test('registered handlers are called with the event payload when an event is emitted', async () => {
|
||||
const eventsServices = createEventServices<TestEvents>({ logger: createNoopLogger() });
|
||||
const handlerCalls: unknown[] = [];
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'test-handler',
|
||||
handler: async (payload, meta) => {
|
||||
handlerCalls.push({ payload, meta });
|
||||
},
|
||||
});
|
||||
|
||||
eventsServices.emitEvent({
|
||||
eventName: 'user.created',
|
||||
payload: { userId: '123', email: 'test@example.com' },
|
||||
eventId: 'evt_test',
|
||||
now: new Date('2024-01-01'),
|
||||
});
|
||||
|
||||
expect(handlerCalls).to.deep.equal([]);
|
||||
|
||||
await nextTick();
|
||||
|
||||
expect(handlerCalls).to.deep.equal([{
|
||||
payload: { userId: '123', email: 'test@example.com' },
|
||||
meta: { emittedAt: new Date('2024-01-01'), eventId: 'evt_test' },
|
||||
}]);
|
||||
});
|
||||
|
||||
test('multiple handlers registered for the same event are all called', async () => {
|
||||
const eventsServices = createEventServices<TestEvents>({ logger: createNoopLogger() });
|
||||
const handlerCalls: unknown[] = [];
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'handler-1',
|
||||
handler: async (payload) => {
|
||||
handlerCalls.push({ handler: 'handler-1', payload });
|
||||
},
|
||||
});
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'handler-2',
|
||||
handler: async (payload) => {
|
||||
handlerCalls.push({ handler: 'handler-2', payload });
|
||||
},
|
||||
});
|
||||
|
||||
eventsServices.emitEvent({
|
||||
eventName: 'user.created',
|
||||
payload: { userId: '456', email: 'test2@example.com' },
|
||||
eventId: 'evt_multi',
|
||||
now: new Date('2024-02-01'),
|
||||
});
|
||||
|
||||
await nextTick();
|
||||
|
||||
expect(handlerCalls).to.have.length(2);
|
||||
expect(handlerCalls).to.deep.include({ handler: 'handler-1', payload: { userId: '456', email: 'test2@example.com' } });
|
||||
expect(handlerCalls).to.deep.include({ handler: 'handler-2', payload: { userId: '456', email: 'test2@example.com' } });
|
||||
});
|
||||
|
||||
test('emitting an event with no registered handlers does not throw an error', async () => {
|
||||
const eventsServices = createEventServices<TestEvents>({ logger: createNoopLogger() });
|
||||
|
||||
expect(async () => {
|
||||
eventsServices.emitEvent({
|
||||
eventName: 'user.deleted',
|
||||
payload: { userId: '789' },
|
||||
eventId: 'evt_no_handlers',
|
||||
now: new Date('2024-03-01'),
|
||||
});
|
||||
|
||||
await nextTick();
|
||||
}).to.not.throw();
|
||||
});
|
||||
|
||||
test('handlers are only called for their specific registered event', async () => {
|
||||
const eventsServices = createEventServices<TestEvents>({ logger: createNoopLogger() });
|
||||
const handlerCalls: unknown[] = [];
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'created-handler',
|
||||
handler: async () => {
|
||||
handlerCalls.push('created');
|
||||
},
|
||||
});
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.deleted',
|
||||
handlerName: 'deleted-handler',
|
||||
handler: async () => {
|
||||
handlerCalls.push('deleted');
|
||||
},
|
||||
});
|
||||
|
||||
eventsServices.emitEvent({
|
||||
eventName: 'user.created',
|
||||
payload: { userId: '111', email: 'test@example.com' },
|
||||
eventId: 'evt_created',
|
||||
now: new Date('2024-04-01'),
|
||||
});
|
||||
|
||||
await nextTick();
|
||||
|
||||
expect(handlerCalls).to.deep.equal(['created']);
|
||||
});
|
||||
|
||||
test('handler errors are caught and do not crash the application', async () => {
|
||||
const eventsServices = createEventServices<TestEvents>({ logger: createNoopLogger() });
|
||||
const handlerCalls: unknown[] = [];
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'failing-handler',
|
||||
handler: async () => {
|
||||
throw new Error('Handler failed');
|
||||
},
|
||||
});
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'successful-handler',
|
||||
handler: async () => {
|
||||
handlerCalls.push('success');
|
||||
},
|
||||
});
|
||||
|
||||
eventsServices.emitEvent({
|
||||
eventName: 'user.created',
|
||||
payload: { userId: '222', email: 'error@example.com' },
|
||||
eventId: 'evt_error',
|
||||
now: new Date('2024-05-01'),
|
||||
});
|
||||
|
||||
await nextTick();
|
||||
|
||||
expect(handlerCalls).to.deep.equal(['success']);
|
||||
});
|
||||
});
|
||||
|
||||
describe('onEvent', () => {
|
||||
test('registering a handler with a duplicate name for the same event throws an error', () => {
|
||||
const eventsServices = createEventServices<TestEvents>({ logger: createNoopLogger() });
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'duplicate-handler',
|
||||
handler: async () => {},
|
||||
});
|
||||
|
||||
expect(() => {
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'duplicate-handler',
|
||||
handler: async () => {},
|
||||
});
|
||||
}).to.throw('Duplicate handler name "duplicate-handler" for event "user.created"');
|
||||
});
|
||||
|
||||
test('the same handler name can be used for different events', () => {
|
||||
const eventsServices = createEventServices<TestEvents>({ logger: createNoopLogger() });
|
||||
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.created',
|
||||
handlerName: 'shared-handler-name',
|
||||
handler: async () => {},
|
||||
});
|
||||
|
||||
expect(() => {
|
||||
eventsServices.onEvent({
|
||||
eventName: 'user.deleted',
|
||||
handlerName: 'shared-handler-name',
|
||||
handler: async () => {},
|
||||
});
|
||||
}).to.not.throw();
|
||||
});
|
||||
});
|
||||
});
|
||||
83
apps/papra-server/src/modules/app/events/events.services.ts
Normal file
83
apps/papra-server/src/modules/app/events/events.services.ts
Normal file
@@ -0,0 +1,83 @@
|
||||
import type { Logger } from '../../shared/logger/logger';
|
||||
import type { AppEvents } from './events.types';
|
||||
import { safely } from '@corentinth/chisels';
|
||||
import { createError } from '../../shared/errors/errors';
|
||||
import { createLogger, wrapWithLoggerContext } from '../../shared/logger/logger';
|
||||
import { generateId } from '../../shared/random/ids';
|
||||
import { isNil } from '../../shared/utils';
|
||||
|
||||
type HandlerMeta = {
|
||||
emittedAt: Date;
|
||||
eventId: string;
|
||||
};
|
||||
|
||||
export type EventServices = ReturnType<typeof createEventServices<AppEvents>>;
|
||||
|
||||
export function createEventServices<T extends Record<string, Record<string, unknown>> = AppEvents>({ logger = createLogger({ namespace: 'events-services' }) }: { logger?: Logger } = {}) {
|
||||
const handlers = new Map<keyof T, { handlerName: string; handler: (payload: T[keyof T], meta: HandlerMeta) => Promise<void> | void }[]>();
|
||||
|
||||
return {
|
||||
onEvent<K extends keyof T>({ eventName, handlerName, handler }: {
|
||||
eventName: K;
|
||||
handlerName: string;
|
||||
handler: (payload: T[K], meta: HandlerMeta) => Promise<void>;
|
||||
}) {
|
||||
const isDuplicateName = handlers.get(eventName)?.some(h => h.handlerName === handlerName) ?? false;
|
||||
|
||||
if (isDuplicateName) {
|
||||
throw createError({
|
||||
message: `Duplicate handler name "${handlerName}" for event "${String(eventName)}"`,
|
||||
code: 'events.duplicate_handler_name',
|
||||
statusCode: 500,
|
||||
isInternal: true,
|
||||
});
|
||||
}
|
||||
|
||||
handlers.set(eventName, [
|
||||
...(handlers.get(eventName) ?? []),
|
||||
{ handlerName, handler: handler as (payload: T[keyof T], meta: HandlerMeta) => Promise<void> },
|
||||
]);
|
||||
},
|
||||
|
||||
emitEvent<K extends keyof T>({
|
||||
eventName,
|
||||
payload,
|
||||
eventId = generateId({ prefix: 'evt' }),
|
||||
now = new Date(),
|
||||
}: {
|
||||
eventName: K;
|
||||
payload: T[K];
|
||||
eventId?: string;
|
||||
now?: Date;
|
||||
}) {
|
||||
const eventHandlers = handlers.get(eventName);
|
||||
|
||||
if (isNil(eventHandlers) || eventHandlers.length === 0) {
|
||||
logger.debug(`No handlers for event: ${String(eventName)}`);
|
||||
return;
|
||||
}
|
||||
|
||||
logger.debug({
|
||||
eventName,
|
||||
eventId,
|
||||
handlerCount: eventHandlers.length,
|
||||
handlerNames: eventHandlers.map(({ handlerName }) => handlerName),
|
||||
}, 'Event emitted');
|
||||
|
||||
setImmediate(async () => {
|
||||
await Promise.allSettled(eventHandlers.map(async ({ handlerName, handler }) => {
|
||||
await wrapWithLoggerContext({ eventId, eventName, handlerName }, async () => {
|
||||
const [, error] = await safely(async () => handler(payload, { emittedAt: now, eventId }));
|
||||
|
||||
if (error) {
|
||||
logger.error({ error }, 'Error in event handler');
|
||||
return;
|
||||
}
|
||||
|
||||
logger.info('Event handler executed successfully');
|
||||
});
|
||||
}));
|
||||
});
|
||||
},
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
import type { EventServices } from './events.services';
|
||||
|
||||
export function createTestEventServices() {
|
||||
const emittedEvents: { eventName: string; payload: Record<string, unknown> }[] = [];
|
||||
|
||||
const services = {
|
||||
onEvent() {},
|
||||
emitEvent({ eventName, payload }) {
|
||||
emittedEvents.push({ eventName, payload });
|
||||
},
|
||||
} satisfies EventServices;
|
||||
|
||||
return {
|
||||
...services,
|
||||
getEmittedEvents() {
|
||||
return emittedEvents;
|
||||
},
|
||||
};
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user