feat(*): Complete MongoDB to Supabase migration cleanup

This commit is contained in:
Josh Creek
2025-07-26 23:13:11 +01:00
parent c063e9d2cd
commit 852c6c3f34
12 changed files with 18 additions and 366 deletions
@@ -1,16 +0,0 @@
import { json } from '@sveltejs/kit';
import { dbConnect, dbDisconnect } from '$lib/utils/db';
import PokedexMetadataModel from '$lib/models/PokedexMetadata';
export const GET = async () => {
await dbConnect();
const metadata = await PokedexMetadataModel.findOne();
await dbDisconnect();
if (metadata) {
return json({ lastModified: metadata.lastModified });
} else {
return json({ message: 'Metadata not found' }, { status: 404 });
}
};
-49
View File
@@ -1,49 +0,0 @@
import { json } from '@sveltejs/kit';
import { dbConnect, dbDisconnect } from '$lib/utils/db';
import PokedexEntryModel from '$lib/models/PokedexEntry';
import PokedexEntryRepository from '$lib/repositories/PokedexEntryRepository';
import RegionGameMapping from '$lib/models/RegionGameMapping';
import RegionGameMappingRepository from '$lib/repositories/RegionGameMappingRepository';
import PokedexMetadataModel from '$lib/models/PokedexMetadata';
import dex from '$lib/helpers/pokedex.json';
import RegionGameMappingJson from '$lib/helpers/region-game-mapping.json';
// Function to update the lastModified field in the metadata collection
const updateLastModified = async () => {
const metadata = await PokedexMetadataModel.findOne();
if (metadata) {
metadata.lastModified = new Date();
await metadata.save();
} else {
await PokedexMetadataModel.create({ lastModified: new Date() });
}
};
// Seed Pokedex data
export const GET = async () => {
// Immediately return if not in development to prevent seeding extra data
return;
await dbConnect()
.then(async () => {
// Create pokedex entries
const repo = new PokedexEntryRepository();
dex.forEach(async (pokemon: PokedexEntryModel) => {
await repo.create(pokemon);
console.log(`Seeded ${pokemon.pokedexNumber} ${pokemon.pokemon} ${pokemon.form}`);
});
// Create region-game mappings
const regionGameMappingRepository = new RegionGameMappingRepository();
await regionGameMappingRepository.create(RegionGameMappingJson as RegionGameMapping[]);
// Update the lastModified field after seeding
await updateLastModified();
})
.finally(() => dbDisconnect());
return json({
message: 'seeded'
});
};