File size: 5,602 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
import { createId } from "@paralleldrive/cuid2";
import {
defaultCertification,
defaultEducation,
defaultExperience,
defaultLanguage,
defaultProfile,
defaultProject,
defaultResumeData,
defaultSkill,
resumeDataSchema,
} from "@reactive-resume/schema";
import type { Json } from "@reactive-resume/utils";
import { extractUrl, parseArrayLikeCSVEntry, parseCSV } from "@reactive-resume/utils";
import * as JSZip from "jszip";
import type { Schema } from "zod";
import type { Parser } from "../interfaces/parser";
import type { LinkedIn } from "./schema";
import { linkedInSchema } from "./schema";
export * from "./schema";
const avoidTooShort = (name: string, len: number) => {
if (!name || name.length < len) return "Unknown";
return name;
};
export class LinkedInParser implements Parser<JSZip, LinkedIn> {
schema: Schema;
constructor() {
this.schema = linkedInSchema;
}
async readFile(file: File): Promise<JSZip> {
const data = await JSZip.loadAsync(file);
if (Object.keys(data.files).length === 0) {
throw new Error("ParserError: There were no files found inside the zip archive.");
}
return data;
}
async validate(data: JSZip) {
const result: Json = {};
for (const [name, file] of Object.entries(data.files)) {
for (const key of Object.keys(linkedInSchema.shape)) {
if (name.includes(key)) {
const content = await file.async("text");
result[key] = await parseCSV(content);
}
}
}
return linkedInSchema.parse(result);
}
convert(data: LinkedIn) {
const result = JSON.parse(JSON.stringify(defaultResumeData));
// Profile
if (data.Profile && data.Profile.length > 0) {
const profile = data.Profile[0];
const twitterHandle = profile["Twitter Handles"];
result.basics.name = `${profile["First Name"]} ${profile["Last Name"]}`;
result.basics.location = profile["Geo Location"];
result.basics.headline = profile.Headline;
// profile.Websites is represented as an array-like structure f.e. [COMPANY:https://some.link,PORTFOLIO:...]
const extractFirstWebsiteLink = (entry: string) =>
(parseArrayLikeCSVEntry(entry)[0] ?? "").replace(/.*?:/, "");
result.basics.url.href = extractUrl(extractFirstWebsiteLink(profile.Websites)) ?? "";
result.sections.summary.content = profile.Summary;
if (twitterHandle) {
result.sections.profiles.items.push({
...defaultProfile,
id: createId(),
icon: "twitter",
network: "Twitter",
username: twitterHandle,
url: { ...defaultProfile.url, href: `https://twitter.com/${twitterHandle}` },
});
}
}
// Email Addresses
if (data["Email Addresses"] && data["Email Addresses"].length > 0) {
const email = data["Email Addresses"][0];
result.basics.email = email["Email Address"];
}
// Positions
if (data.Positions && data.Positions.length > 0) {
for (const position of data.Positions) {
result.sections.experience.items.push({
...defaultExperience,
id: createId(),
company: position["Company Name"],
position: position.Title,
location: position.Location,
summary: position.Description ?? "",
date: `${position["Started On"]} - ${position["Finished On"] ?? "Present"}`,
});
}
}
// Education
if (data.Education && data.Education.length > 0) {
for (const education of data.Education) {
result.sections.education.items.push({
...defaultEducation,
id: createId(),
institution: avoidTooShort(education["School Name"], 2),
studyType: avoidTooShort(education["Degree Name"], 2),
summary: avoidTooShort(education.Notes ?? "", 2),
date: `${education["Start Date"]} - ${education["End Date"] ?? "Present"}`,
});
}
}
// Skills
if (data.Skills && data.Skills.length > 0) {
for (const skill of data.Skills) {
result.sections.skills.items.push({
...defaultSkill,
id: createId(),
name: skill.Name,
});
}
}
// Languages
if (data.Languages && data.Languages.length > 0) {
for (const language of data.Languages) {
result.sections.languages.items.push({
...defaultLanguage,
id: createId(),
name: language.Name,
description: language.Proficiency ?? "",
});
}
}
// Certifications
if (data.Certifications && data.Certifications.length > 0) {
for (const certification of data.Certifications) {
result.sections.certifications.items.push({
...defaultCertification,
id: createId(),
name: certification.Name,
issuer: certification.Authority,
url: { ...defaultCertification.url, href: certification.Url },
date: `${certification["Started On"]} - ${certification["Finished On"] ?? "Present"}`,
});
}
}
// Projects
if (data.Projects && data.Projects.length > 0) {
for (const project of data.Projects) {
result.sections.projects.items.push({
...defaultProject,
id: createId(),
name: project.Title,
description: project.Description,
url: { ...defaultProject.url, href: project.Url ?? "" },
date: `${project["Started On"]} - ${project["Finished On"] ?? "Present"}`,
});
}
}
return resumeDataSchema.parse(result);
}
}
|