fix: really fixed rebuild from filesystem
This commit is contained in:
@@ -250,7 +250,6 @@ export class PostEngine extends EventEmitter {
|
||||
private async writePostFile(post: PostData): Promise<string> {
|
||||
const metadata: Record<string, unknown> = {
|
||||
id: post.id,
|
||||
projectId: post.projectId,
|
||||
title: post.title,
|
||||
slug: post.slug,
|
||||
status: post.status,
|
||||
@@ -279,10 +278,40 @@ export class PostEngine extends EventEmitter {
|
||||
private async readPostFile(filePath: string): Promise<PostData | null> {
|
||||
const data = await readPostFileShared(filePath);
|
||||
if (!data) return null;
|
||||
|
||||
const fileStem = path.parse(filePath).name;
|
||||
const normalizedTitle = typeof data.title === 'string' && data.title.trim().length > 0
|
||||
? data.title.trim()
|
||||
: fileStem;
|
||||
const baseSlugSource = typeof data.slug === 'string' && data.slug.trim().length > 0
|
||||
? data.slug.trim()
|
||||
: normalizedTitle;
|
||||
const normalizedSlug = this.generateSlug(baseSlugSource) || this.generateSlug(fileStem) || uuidv4();
|
||||
|
||||
const createdAt = data.createdAt instanceof Date && !Number.isNaN(data.createdAt.getTime())
|
||||
? data.createdAt
|
||||
: (data.updatedAt instanceof Date && !Number.isNaN(data.updatedAt.getTime()) ? data.updatedAt : new Date());
|
||||
const updatedAt = data.updatedAt instanceof Date && !Number.isNaN(data.updatedAt.getTime())
|
||||
? data.updatedAt
|
||||
: createdAt;
|
||||
|
||||
const normalizedTags = Array.isArray(data.tags)
|
||||
? data.tags.filter((tag): tag is string => typeof tag === 'string')
|
||||
: [];
|
||||
const normalizedCategories = Array.isArray(data.categories)
|
||||
? data.categories.filter((category): category is string => typeof category === 'string')
|
||||
: [];
|
||||
|
||||
return {
|
||||
...data,
|
||||
projectId: data.projectId || this.currentProjectId,
|
||||
id: typeof data.id === 'string' && data.id.trim().length > 0 ? data.id : uuidv4(),
|
||||
projectId: this.currentProjectId,
|
||||
title: normalizedTitle,
|
||||
slug: normalizedSlug,
|
||||
createdAt,
|
||||
updatedAt,
|
||||
tags: normalizedTags,
|
||||
categories: normalizedCategories,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1125,8 +1154,9 @@ export class PostEngine extends EventEmitter {
|
||||
|
||||
onProgress(5, 'Scanning posts directory...');
|
||||
|
||||
// Recursively find all .md files in the posts directory tree
|
||||
const mdFiles: string[] = [];
|
||||
// Recursively find markdown files in the posts directory tree
|
||||
const markdownFiles: string[] = [];
|
||||
const markdownExtensions = new Set(['.md', '.markdown', '.mdx']);
|
||||
const scanDir = async (dir: string) => {
|
||||
try {
|
||||
const entries = await fs.readdir(dir, { withFileTypes: true });
|
||||
@@ -1134,8 +1164,11 @@ export class PostEngine extends EventEmitter {
|
||||
const fullPath = path.join(dir, entry.name);
|
||||
if (entry.isDirectory()) {
|
||||
await scanDir(fullPath);
|
||||
} else if (entry.name.endsWith('.md')) {
|
||||
mdFiles.push(fullPath);
|
||||
} else {
|
||||
const extension = path.extname(entry.name).toLowerCase();
|
||||
if (markdownExtensions.has(extension)) {
|
||||
markdownFiles.push(fullPath);
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
@@ -1150,62 +1183,87 @@ export class PostEngine extends EventEmitter {
|
||||
}
|
||||
await scanDir(postsBaseDir);
|
||||
|
||||
onProgress(10, `Found ${mdFiles.length} post files`);
|
||||
onProgress(10, `Found ${markdownFiles.length} post files`);
|
||||
|
||||
// Track slugs to detect duplicates
|
||||
const insertedSlugs = new Map<string, string>(); // slug -> filePath
|
||||
// Track slugs and ids to avoid collisions while still importing all files
|
||||
const insertedSlugs = new Set<string>(); // projectId:slug
|
||||
const insertedIds = new Set<string>();
|
||||
let importedCount = 0;
|
||||
let parseFailedCount = 0;
|
||||
let deduplicatedSlugCount = 0;
|
||||
let deduplicatedIdCount = 0;
|
||||
let insertFailedCount = 0;
|
||||
|
||||
for (let i = 0; i < mdFiles.length; i++) {
|
||||
const filePath = mdFiles[i];
|
||||
for (let i = 0; i < markdownFiles.length; i++) {
|
||||
const filePath = markdownFiles[i];
|
||||
const fileName = path.basename(filePath);
|
||||
|
||||
onProgress(10 + (80 * (i / mdFiles.length)), `Processing ${i + 1}/${mdFiles.length}: ${fileName}`);
|
||||
onProgress(10 + (80 * (i / markdownFiles.length)), `Processing ${i + 1}/${markdownFiles.length}: ${fileName}`);
|
||||
|
||||
const postData = await this.readPostFile(filePath);
|
||||
|
||||
if (postData) {
|
||||
try {
|
||||
const projectId = postData.projectId || this.currentProjectId;
|
||||
const slugKey = `${projectId}:${postData.slug}`;
|
||||
if (!postData) {
|
||||
parseFailedCount++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Check for duplicate slugs
|
||||
if (insertedSlugs.has(slugKey)) {
|
||||
console.error(`Duplicate slug "${postData.slug}" found. File "${filePath}" duplicates "${insertedSlugs.get(slugKey)}". Skipping.`);
|
||||
continue;
|
||||
}
|
||||
try {
|
||||
const projectId = this.currentProjectId;
|
||||
|
||||
const checksum = this.calculateChecksum(postData.content);
|
||||
let postId = postData.id;
|
||||
while (insertedIds.has(postId)) {
|
||||
postId = uuidv4();
|
||||
deduplicatedIdCount++;
|
||||
}
|
||||
|
||||
// Insert fresh - we deleted all records at the start
|
||||
await db.insert(posts).values({
|
||||
id: postData.id,
|
||||
projectId,
|
||||
title: postData.title,
|
||||
slug: postData.slug,
|
||||
excerpt: postData.excerpt,
|
||||
content: null, // Content lives in the file, not DB
|
||||
status: 'published', // Files on disk = published
|
||||
author: postData.author,
|
||||
createdAt: postData.createdAt,
|
||||
updatedAt: postData.updatedAt,
|
||||
publishedAt: postData.publishedAt || postData.updatedAt,
|
||||
filePath,
|
||||
checksum,
|
||||
tags: JSON.stringify(postData.tags),
|
||||
categories: JSON.stringify(postData.categories),
|
||||
});
|
||||
let slug = postData.slug;
|
||||
const baseSlug = slug;
|
||||
let slugAttempt = 2;
|
||||
while (insertedSlugs.has(`${projectId}:${slug}`)) {
|
||||
slug = `${baseSlug}-${slugAttempt}`;
|
||||
slugAttempt++;
|
||||
deduplicatedSlugCount++;
|
||||
}
|
||||
|
||||
insertedSlugs.set(slugKey, filePath);
|
||||
const checksum = this.calculateChecksum(postData.content);
|
||||
|
||||
// Update FTS index (use file content for search)
|
||||
await this.updateFTSIndex(postData);
|
||||
} catch (error: any) {
|
||||
// Handle constraint violations and other errors gracefully
|
||||
if (error?.code === 'SQLITE_CONSTRAINT_UNIQUE') {
|
||||
console.error(`Failed to insert post "${postData.title}" from ${filePath}: Unique constraint violation (likely slug conflict)`);
|
||||
} else {
|
||||
console.error(`Failed to process post from ${filePath}:`, error);
|
||||
}
|
||||
await db.insert(posts).values({
|
||||
id: postId,
|
||||
projectId,
|
||||
title: postData.title,
|
||||
slug,
|
||||
excerpt: postData.excerpt,
|
||||
content: null,
|
||||
status: 'published',
|
||||
author: postData.author,
|
||||
createdAt: postData.createdAt,
|
||||
updatedAt: postData.updatedAt,
|
||||
publishedAt: postData.publishedAt || postData.updatedAt,
|
||||
filePath,
|
||||
checksum,
|
||||
tags: JSON.stringify(postData.tags),
|
||||
categories: JSON.stringify(postData.categories),
|
||||
});
|
||||
|
||||
insertedIds.add(postId);
|
||||
insertedSlugs.add(`${projectId}:${slug}`);
|
||||
importedCount++;
|
||||
|
||||
await this.updateFTSIndex({
|
||||
id: postId,
|
||||
projectId,
|
||||
title: postData.title,
|
||||
content: postData.content,
|
||||
excerpt: postData.excerpt,
|
||||
tags: postData.tags,
|
||||
categories: postData.categories,
|
||||
});
|
||||
} catch (error: any) {
|
||||
insertFailedCount++;
|
||||
if (error?.code === 'SQLITE_CONSTRAINT_UNIQUE') {
|
||||
console.error(`Failed to insert post "${postData.title}" from ${filePath}: Unique constraint violation`);
|
||||
} else {
|
||||
console.error(`Failed to process post from ${filePath}:`, error);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1215,7 +1273,8 @@ export class PostEngine extends EventEmitter {
|
||||
}
|
||||
}
|
||||
|
||||
onProgress(100, 'Database rebuild complete');
|
||||
onProgress(100, `Database rebuild complete: imported ${importedCount}/${markdownFiles.length} files`);
|
||||
console.log(`[PostEngine] rebuildDatabaseFromFiles complete. scanned=${markdownFiles.length}, imported=${importedCount}, parseFailed=${parseFailedCount}, insertFailed=${insertFailedCount}, deduplicatedSlugs=${deduplicatedSlugCount}, deduplicatedIds=${deduplicatedIdCount}`);
|
||||
this.emit('databaseRebuilt');
|
||||
},
|
||||
};
|
||||
|
||||
@@ -8,7 +8,6 @@ import matter from 'gray-matter';
|
||||
|
||||
export interface PostFileData {
|
||||
id: string;
|
||||
projectId?: string;
|
||||
title: string;
|
||||
slug: string;
|
||||
excerpt?: string;
|
||||
@@ -24,7 +23,6 @@ export interface PostFileData {
|
||||
|
||||
interface PostFileMetadata {
|
||||
id: string;
|
||||
projectId?: string;
|
||||
title: string;
|
||||
slug: string;
|
||||
excerpt?: string;
|
||||
@@ -58,7 +56,6 @@ export async function readPostFile(filePath: string): Promise<PostFileData | nul
|
||||
|
||||
return {
|
||||
id: metadata.id,
|
||||
projectId: metadata.projectId,
|
||||
title: metadata.title,
|
||||
slug: metadata.slug,
|
||||
excerpt: metadata.excerpt,
|
||||
|
||||
@@ -1324,6 +1324,32 @@ Content 2`;
|
||||
expect(mockLocalDb.insert).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should include .markdown files during rebuild', async () => {
|
||||
const fs = await import('fs/promises');
|
||||
|
||||
vi.mocked(fs.readdir).mockResolvedValueOnce([
|
||||
mockDirent('legacy-post.markdown'),
|
||||
] as any);
|
||||
|
||||
vi.mocked(fs.access).mockResolvedValue(undefined);
|
||||
vi.mocked(fs.readFile).mockResolvedValueOnce(`---
|
||||
id: legacy-post-id
|
||||
projectId: default
|
||||
title: Legacy Post
|
||||
slug: legacy-post
|
||||
status: published
|
||||
createdAt: 2024-01-01T00:00:00.000Z
|
||||
updatedAt: 2024-01-01T00:00:00.000Z
|
||||
tags: []
|
||||
categories: []
|
||||
---
|
||||
Legacy content`);
|
||||
|
||||
await postEngine.rebuildDatabaseFromFiles();
|
||||
|
||||
expect(mockLocalDb.insert).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should emit databaseRebuilt event on completion', async () => {
|
||||
const fs = await import('fs/promises');
|
||||
const handler = vi.fn();
|
||||
@@ -1511,6 +1537,99 @@ Valid content`;
|
||||
// Should not throw
|
||||
await postEngine.rebuildDatabaseFromFiles();
|
||||
});
|
||||
|
||||
it('should import posts with duplicate slugs by auto-deduplicating slugs', async () => {
|
||||
const fs = await import('fs/promises');
|
||||
const insertedSlugs: string[] = [];
|
||||
|
||||
vi.mocked(mockLocalDb.insert).mockImplementation(() => ({
|
||||
values: vi.fn((data: any) => {
|
||||
insertedSlugs.push(data.slug);
|
||||
if (data?.id) {
|
||||
mockPosts.set(data.id, data);
|
||||
}
|
||||
return Promise.resolve();
|
||||
}),
|
||||
}));
|
||||
|
||||
vi.mocked(fs.readdir).mockResolvedValueOnce([
|
||||
mockDirent('post-a.md'),
|
||||
mockDirent('post-b.md'),
|
||||
] as any);
|
||||
|
||||
vi.mocked(fs.access).mockResolvedValue(undefined);
|
||||
vi.mocked(fs.readFile).mockImplementation(async (filePath: any) => {
|
||||
if (filePath.includes('post-a.md')) {
|
||||
return `---
|
||||
id: post-a-id
|
||||
projectId: default
|
||||
title: Post A
|
||||
slug: same-slug
|
||||
status: published
|
||||
createdAt: 2024-01-01T00:00:00.000Z
|
||||
updatedAt: 2024-01-01T00:00:00.000Z
|
||||
tags: []
|
||||
categories: []
|
||||
---
|
||||
Content A`;
|
||||
}
|
||||
return `---
|
||||
id: post-b-id
|
||||
projectId: default
|
||||
title: Post B
|
||||
slug: same-slug
|
||||
status: published
|
||||
createdAt: 2024-01-02T00:00:00.000Z
|
||||
updatedAt: 2024-01-02T00:00:00.000Z
|
||||
tags: []
|
||||
categories: []
|
||||
---
|
||||
Content B`;
|
||||
});
|
||||
|
||||
await postEngine.rebuildDatabaseFromFiles();
|
||||
|
||||
const uniqueSlugs = new Set(insertedSlugs);
|
||||
expect(uniqueSlugs.has('same-slug')).toBe(true);
|
||||
expect(uniqueSlugs.has('same-slug-2')).toBe(true);
|
||||
});
|
||||
|
||||
it('should ignore frontmatter projectId and import into current project', async () => {
|
||||
const fs = await import('fs/promises');
|
||||
const insertedProjects: string[] = [];
|
||||
|
||||
postEngine.setProjectContext('current-project-id');
|
||||
|
||||
vi.mocked(mockLocalDb.insert).mockImplementation(() => ({
|
||||
values: vi.fn((data: any) => {
|
||||
insertedProjects.push(data.projectId);
|
||||
if (data?.id) {
|
||||
mockPosts.set(data.id, data);
|
||||
}
|
||||
return Promise.resolve();
|
||||
}),
|
||||
}));
|
||||
|
||||
vi.mocked(fs.readdir).mockResolvedValueOnce([mockDirent('post-with-old-project.md')] as any);
|
||||
vi.mocked(fs.access).mockResolvedValue(undefined);
|
||||
vi.mocked(fs.readFile).mockResolvedValueOnce(`---
|
||||
id: post-old-project
|
||||
projectId: old-project-id
|
||||
title: Old Project Post
|
||||
slug: old-project-post
|
||||
status: published
|
||||
createdAt: 2024-01-01T00:00:00.000Z
|
||||
updatedAt: 2024-01-01T00:00:00.000Z
|
||||
tags: []
|
||||
categories: []
|
||||
---
|
||||
Content`);
|
||||
|
||||
await postEngine.rebuildDatabaseFromFiles();
|
||||
|
||||
expect(insertedProjects).toHaveLength(1);
|
||||
expect(insertedProjects[0]).toBe('current-project-id');
|
||||
});
|
||||
});
|
||||
|
||||
describe('Date-based folder structure', () => {
|
||||
@@ -1701,6 +1820,44 @@ Valid content`;
|
||||
expect(fs.writeFile).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should not write projectId to frontmatter when publishing', async () => {
|
||||
const fs = await import('fs/promises');
|
||||
postEngine.setProjectContext('my-project-id');
|
||||
const created = await postEngine.createPost({
|
||||
title: 'No ProjectId Frontmatter',
|
||||
content: 'Published content',
|
||||
});
|
||||
|
||||
vi.mocked(mockLocalDb.select).mockImplementation(() => {
|
||||
const chain = createSelectChain();
|
||||
chain.where = vi.fn().mockReturnValue({
|
||||
...chain,
|
||||
get: vi.fn().mockResolvedValue({
|
||||
id: created.id,
|
||||
projectId: created.projectId,
|
||||
title: created.title,
|
||||
slug: created.slug,
|
||||
status: 'draft',
|
||||
content: created.content,
|
||||
filePath: '',
|
||||
tags: '[]',
|
||||
categories: '[]',
|
||||
createdAt: created.createdAt,
|
||||
updatedAt: created.updatedAt,
|
||||
}),
|
||||
all: vi.fn().mockResolvedValue([]),
|
||||
});
|
||||
return chain;
|
||||
});
|
||||
|
||||
await postEngine.publishPost(created.id);
|
||||
|
||||
const writeCalls = vi.mocked(fs.writeFile).mock.calls;
|
||||
expect(writeCalls.length).toBeGreaterThan(0);
|
||||
const writtenContent = writeCalls[0][1] as string;
|
||||
expect(writtenContent).not.toContain('projectId:');
|
||||
});
|
||||
|
||||
it('should emit postUpdated event', async () => {
|
||||
const handler = vi.fn();
|
||||
postEngine.on('postUpdated', handler);
|
||||
|
||||
Reference in New Issue
Block a user