added new import format
This commit is contained in:
parent
75d91fbac7
commit
b0ea14737f
|
@ -54,7 +54,7 @@ export default async function importFromLinkwarden(
|
||||||
|
|
||||||
// Import Links
|
// Import Links
|
||||||
for (const link of e.links) {
|
for (const link of e.links) {
|
||||||
const newLink = await prisma.link.create({
|
await prisma.link.create({
|
||||||
data: {
|
data: {
|
||||||
url: link.url,
|
url: link.url,
|
||||||
name: link.name,
|
name: link.name,
|
||||||
|
|
|
@ -0,0 +1,115 @@
|
||||||
|
import { prisma } from "@/lib/api/db";
|
||||||
|
import { Backup } from "@/types/global";
|
||||||
|
import createFolder from "@/lib/api/storage/createFolder";
|
||||||
|
|
||||||
|
const MAX_LINKS_PER_USER = Number(process.env.MAX_LINKS_PER_USER) || 30000;
|
||||||
|
|
||||||
|
type WallabagBackup = {
|
||||||
|
is_archived: number;
|
||||||
|
is_starred: number;
|
||||||
|
tags: String[];
|
||||||
|
is_public: boolean;
|
||||||
|
id: number;
|
||||||
|
title: string;
|
||||||
|
url: string;
|
||||||
|
content: string;
|
||||||
|
created_at: Date;
|
||||||
|
updated_at: Date;
|
||||||
|
published_by: string[];
|
||||||
|
starred_at: Date;
|
||||||
|
annotations: any[];
|
||||||
|
mimetype: string;
|
||||||
|
language: string;
|
||||||
|
reading_time: number;
|
||||||
|
domain_name: string;
|
||||||
|
preview_picture: string;
|
||||||
|
http_status: string;
|
||||||
|
headers: Record<string, string>;
|
||||||
|
}[];
|
||||||
|
|
||||||
|
export default async function importFromWallabag(
|
||||||
|
userId: number,
|
||||||
|
rawData: string
|
||||||
|
) {
|
||||||
|
const data: WallabagBackup = JSON.parse(rawData);
|
||||||
|
|
||||||
|
const backup = data.filter((e) => e.url);
|
||||||
|
|
||||||
|
let totalImports = backup.length;
|
||||||
|
|
||||||
|
const numberOfLinksTheUserHas = await prisma.link.count({
|
||||||
|
where: {
|
||||||
|
collection: {
|
||||||
|
ownerId: userId,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (totalImports + numberOfLinksTheUserHas > MAX_LINKS_PER_USER)
|
||||||
|
return {
|
||||||
|
response: `Error: Each user can only have a maximum of ${MAX_LINKS_PER_USER} Links.`,
|
||||||
|
status: 400,
|
||||||
|
};
|
||||||
|
|
||||||
|
await prisma
|
||||||
|
.$transaction(
|
||||||
|
async () => {
|
||||||
|
const newCollection = await prisma.collection.create({
|
||||||
|
data: {
|
||||||
|
owner: {
|
||||||
|
connect: {
|
||||||
|
id: userId,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
name: "Imports",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
createFolder({ filePath: `archives/${newCollection.id}` });
|
||||||
|
|
||||||
|
for (const link of backup) {
|
||||||
|
await prisma.link.create({
|
||||||
|
data: {
|
||||||
|
pinnedBy: link.is_starred
|
||||||
|
? { connect: { id: userId } }
|
||||||
|
: undefined,
|
||||||
|
url: link.url,
|
||||||
|
name: link.title || "",
|
||||||
|
textContent: link.content || "",
|
||||||
|
importDate: link.created_at || null,
|
||||||
|
collection: {
|
||||||
|
connect: {
|
||||||
|
id: newCollection.id,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
tags:
|
||||||
|
link.tags && link.tags[0]
|
||||||
|
? {
|
||||||
|
connectOrCreate: link.tags.map((tag) => ({
|
||||||
|
where: {
|
||||||
|
name_ownerId: {
|
||||||
|
name: tag.trim(),
|
||||||
|
ownerId: userId,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
create: {
|
||||||
|
name: tag.trim(),
|
||||||
|
owner: {
|
||||||
|
connect: {
|
||||||
|
id: userId,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})),
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ timeout: 30000 }
|
||||||
|
)
|
||||||
|
.catch((err) => console.log(err));
|
||||||
|
|
||||||
|
return { response: "Success.", status: 200 };
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ import importFromHTMLFile from "@/lib/api/controllers/migration/importFromHTMLFi
|
||||||
import importFromLinkwarden from "@/lib/api/controllers/migration/importFromLinkwarden";
|
import importFromLinkwarden from "@/lib/api/controllers/migration/importFromLinkwarden";
|
||||||
import { MigrationFormat, MigrationRequest } from "@/types/global";
|
import { MigrationFormat, MigrationRequest } from "@/types/global";
|
||||||
import verifyUser from "@/lib/api/verifyUser";
|
import verifyUser from "@/lib/api/verifyUser";
|
||||||
|
import importFromWallabag from "@/lib/api/controllers/migration/importFromWallabag";
|
||||||
|
|
||||||
export const config = {
|
export const config = {
|
||||||
api: {
|
api: {
|
||||||
|
@ -32,9 +33,10 @@ export default async function users(req: NextApiRequest, res: NextApiResponse) {
|
||||||
let data;
|
let data;
|
||||||
if (request.format === MigrationFormat.htmlFile)
|
if (request.format === MigrationFormat.htmlFile)
|
||||||
data = await importFromHTMLFile(user.id, request.data);
|
data = await importFromHTMLFile(user.id, request.data);
|
||||||
|
else if (request.format === MigrationFormat.linkwarden)
|
||||||
if (request.format === MigrationFormat.linkwarden)
|
|
||||||
data = await importFromLinkwarden(user.id, request.data);
|
data = await importFromLinkwarden(user.id, request.data);
|
||||||
|
else if (request.format === MigrationFormat.wallabag)
|
||||||
|
data = await importFromWallabag(user.id, request.data);
|
||||||
|
|
||||||
if (data) return res.status(data.status).json({ response: data.response });
|
if (data) return res.status(data.status).json({ response: data.response });
|
||||||
}
|
}
|
||||||
|
|
|
@ -366,6 +366,26 @@ export default function Account() {
|
||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<label
|
||||||
|
tabIndex={0}
|
||||||
|
role="button"
|
||||||
|
htmlFor="import-wallabag-file"
|
||||||
|
title="Wallabag File"
|
||||||
|
>
|
||||||
|
From Wallabag (JSON file)
|
||||||
|
<input
|
||||||
|
type="file"
|
||||||
|
name="photo"
|
||||||
|
id="import-wallabag-file"
|
||||||
|
accept=".json"
|
||||||
|
className="hidden"
|
||||||
|
onChange={(e) =>
|
||||||
|
importBookmarks(e, MigrationFormat.wallabag)
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -116,6 +116,7 @@ export type MigrationRequest = {
|
||||||
export enum MigrationFormat {
|
export enum MigrationFormat {
|
||||||
linkwarden,
|
linkwarden,
|
||||||
htmlFile,
|
htmlFile,
|
||||||
|
wallabag,
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum Plan {
|
export enum Plan {
|
||||||
|
|
Ŝarĝante…
Reference in New Issue